curl --request POST \
--url https://api.getenso.ai/customers/{customerId}/entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"address": "<unknown>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}API to create an entity
curl --request POST \
--url https://api.getenso.ai/customers/{customerId}/entities \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"address": "<unknown>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}EntityService:createEntityJWT bearer token obtained from POST /auth/system-login using your client credentials.