Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"email": "string",
"name": "string",
"phone": "string",
"description": "string"
}
Request samples
curl --location --request POST '/v1/customers' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "string",
"name": "string",
"phone": "string",
"description": "string"
}'
Responses
application/json {
"code": "success",
"msg": "",
"data": {
"customerId": "cus_test_uyFdKYjPnXJa",
"email": "[email protected]",
"name": "robin",
"description": "",
"created": 1741684152834
}
}
Modified at 2025-05-29 11:04:35