Commet
  • Precios
Iniciar SesiónRegistrarse
Batch create customers POSTCreate customer POSTGet customer GETList customers GETUpdate customer PUT
DocumentaciónRecursosConstruir con AIAPI ReferenceWebhooks

Update customer

Update a customer's name, external ID, or metadata.

PUT
/customers/{id}

Update a customer's name, external ID, or metadata.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

email?string
fullName?string
externalId?string
timezone?string
metadata?
address?

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/customers/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "success": true,  "data": {    "id": "string",    "externalId": "string",    "fullName": "string",    "email": "string",    "timezone": "string",    "metadata": {      "property1": null,      "property2": null    },    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z",    "object": "customer",    "livemode": true  }}
{  "success": false,  "error": {    "type": "string",    "code": "string",    "message": "string",    "param": "string",    "details": null,    "doc_url": "string"  }}
{  "success": false,  "error": {    "type": "string",    "code": "string",    "message": "string",    "param": "string",    "details": null,    "doc_url": "string"  }}
{  "success": false,  "error": {    "type": "string",    "code": "string",    "message": "string",    "param": "string",    "details": null,    "doc_url": "string"  }}
{  "success": false,  "error": {    "type": "string",    "code": "string",    "message": "string",    "param": "string",    "details": null,    "doc_url": "string"  }}

List customers GET

List customers with cursor-based pagination.

Create feature POST

Create a new feature. Code must be lowercase alphanumeric with underscores.