curl --request PUT \
--url https://api.example.com/v1/ui/customers/{id} \
--header 'Content-Type: application/json' \
--data '
{
"metadata": {},
"email": "jsmith@example.com",
"name": "<string>",
"telephone": "<string>",
"externalRef": "<string>"
}
'Updates an existing customer’s information. Only customers belonging to the authenticated provider can be updated.
curl --request PUT \
--url https://api.example.com/v1/ui/customers/{id} \
--header 'Content-Type: application/json' \
--data '
{
"metadata": {},
"email": "jsmith@example.com",
"name": "<string>",
"telephone": "<string>",
"externalRef": "<string>"
}
'