Get a list of all customers
UseGET {URI}/customers
endpoint to get a list of all customers on this platform. There is no parameters for this endpoint.
Endpoint | Purpose |
---|---|
GET {URI}/customers | Get a list of all customers on this platform. |
The following code shows the response example for when you use GET {URI}/customers\
:
[
{
"customerIdentifier": "string", (5-100 chars)
"displayName": "string",(100 chars)
"status": "string",
"createdAt": "2024-03-11T19:30:55.706Z",
"accounts": [
{
"accountIdentifier": "string", (5-100 chars)
"accountNumber": "string",
"displayName": "string", (100 chars)
"createdAt": "2024-03-11T19:30:55.706Z",
"status": "string",
"currencyCode": "string"
}
]
}
]
The response message for this endpoint is:
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
Updated 3 days ago