Logoelepay
Customers

Create customer

カスタマを作成します。

POST
/customers
名前
length ≤ 255
カスタマに関する説明
length ≤ 255
メールアドレス
length ≤ 255
電話番号
length ≤ 255
備考
メタデータ

Response Body

application/json

Created

TypeScript Definitions

Use the response body type in TypeScript.

response?CustomerDto

カスタマオブジェクト

curl -X POST "https://api.elepay.io/customers" \  -H "Content-Type: application/json" \  -d '{}'
{
  "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
}