Logoelepay
Customers

List customers

Retrieves a list of customer information.

GET
/customers
Keyword
Maximum number of items
value ≤ 100 · default: 20
Starting offset
default: 0

Response Body

application/json

OK

TypeScript Definitions

Use the response body type in TypeScript.

curl -X GET "https://api.elepay.io/customers"
{
  "total": 0,
  "customers": [
    {
      "id": "string",
      "object": "customer",
      "liveMode": true,
      "defaultSource": "string",
      "name": "string",
      "description": "string",
      "email": "string",
      "phone": "string",
      "remark": "string",
      "operator": "string",
      "status": "active",
      "metadata": {},
      "updateTime": 0
    }
  ]
}