curl --request PUT \
--url https://api.getenso.ai/customers/{customerId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Acme Corp Updated"
}
'{
"status": "success",
"message": "Success",
"data": {}
}Update a customer’s name or associated entity details.
curl --request PUT \
--url https://api.getenso.ai/customers/{customerId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Acme Corp Updated"
}
'{
"status": "success",
"message": "Success",
"data": {}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.
Customer ID
"Acme Corp Updated"