Skip to content

🧩 Client Business Entity

Manage client business entities used for client categorization and structure.

List client business entities

Request

Retrieve all client business entities with basic pagination support

This is a read-only lookup endpoint backed by Hasura. It is useful after creating records via /api/v1/records.

Security
BearerAuth
Bodyapplication/json
pageSizeinteger, [ 1 .. 1000 ]

Maximum number of records to return

Default:50
pageinteger, >= 0

Number of records to skip (offset)

Default:0
curl -i -X POST \
  https://api.doc.aiwyn.ai/_mock/bundle/gql/v1/client_business_entities \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "pageSize": 50,
    "page": 0
  }'

Responses

Successfully retrieved client business entities

Bodyapplication/json
clientBusinessEntitiesArray of objects
totalobject
Response
{ "clientBusinessEntities": [ {} ], "total": { "aggregate": {} } }