Customers
Update a customer
PATCH/v1/customers/{id}
Update mutable fields on a customer.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
id |
path | string | The customer id. |
Request
curl --request PATCH \
--url https://api.sysos.app/v1/customers/{id} \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"phone": "+1 415 555 0132"
}'
Response 200 OK
{
"id": "cus_77c1e0aa",
"name": "Initech",
"email": "billing@initech.com",
"phone": "+1 415 555 0132"
}