Logoelepay
Customers

List customers

カスタマ情報を一覧で取得します。

GET
/customers
キーワード
最大件数
value ≤ 100 · default: 20
検索開始位置
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
    }
  ]
}