/
List client types
Retrieve all client types with basic pagination support
This is a read-only lookup endpoint backed by Hasura. Use it to resolve the clientTypeId values accepted by the Client Onboarding endpoint (POST /api/v1/clients/v1/onboard).
Security
BearerAuth
- Mock serverhttps://api.doc.aiwyn.ai/_mock/bundle/gql/v1/client_types
- Sandboxhttps://demo.api.aiwyn.ai/gql/v1/client_types
- Staginghttps://staging.api.aiwyn.app/gql/v1/client_types
curl -i -X POST \
https://api.doc.aiwyn.ai/_mock/bundle/gql/v1/client_types \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pageSize": 50,
"page": 0
}'Response
{ "clientTypes": [ { … } ], "total": { "aggregate": { … } } }