curl --request PUT \
--url https://api.getenso.ai/entities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"legalName": "<string>",
"email": [
"jsmith@example.com"
],
"phoneNumber": "<string>",
"externalId": "<string>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}Update an entity’s legal name, email, or custom attributes.
curl --request PUT \
--url https://api.getenso.ai/entities/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"legalName": "<string>",
"email": [
"jsmith@example.com"
],
"phoneNumber": "<string>",
"externalId": "<string>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.
Entity ID