Customers
Update a customer
patch/v1/customers
Request body
Example request
{
"customer_id": "cust_abc123",
"name": "John Doe",
"metadata": {
"key": "value"
}
}Response
Successfully updated the customer
Example response
{
"email": "user@example.com",
"name": "John Doe",
"metadata": {
"key": "value"
},
"country": "US",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}