Skip to main content
POST
/
customers
/
{customerId}
/
entities
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": {}
}
SystemUser permission: EntityService:createEntity

Authorizations

Authorization
string
header
required

JWT bearer token obtained from POST /auth/system-login using your client credentials.

Path Parameters

customerId
string
required

Body

application/json
address
any

Response

Success

status
string
Example:

"success"

message
string
Example:

"Success"

data
object

Endpoint-specific payload (object, array, or null)