π¦ΈββοΈCustomers
API reference for customer-related endpoints
Add a New Customer
To add a new customer to the system, use the authenticated /customer
POST
endpoint. This will initialise a new customer entity and start KYC verification process. The response contains a verification URL that redirects to our KYC partner's portal for further verification.
Customer Entity Updates
Any internal updates to the customer entity will trigger a webhook update event. For details on how to set up and manage webhook subscriptions, please refer to Webhooks.
Blockchain Updates
In order to proceed with customer verification, a challenge needs to be signed and verified (see Blockchain Updates).
Retrieve Customer Entities
To retrieve a list of all customer entities registered for the programme, make a GET
request to /customers
.
Retrieve an Individual Customer
To retrieve information about an individual customer, make a GET
request to /customers/{customerId}
with customer ID as a path parameter.
Deactivate a Customer
To deactivate a customer, use a PATCH
request to /customers/{customerId}/deactivate
. This will also deactivate all associated resources, such as accounts and cards.
Reactivate a Customer
To reactivate a previously deactivated customer, use a PATCH
request to /customers/{customerId}/activate
.
Last updated