cURL
curl --request GET \ --url https://api.voiceaiwrapper.app/api/v2/clients \ --header 'Authorization: Bearer <token>'
{ "clients": [ { "id": "<string>", "name": "<string>", "primary_email": "<string>", "created_at": "2023-11-07T05:31:56Z", "users": [ { "id": "<string>", "email": "<string>" } ] } ] }
Returns all client accounts for the authenticated tenant.
All requests require an Authorization header using Bearer token authentication: Authorization: Bearer <api_key>
Authorization
Authorization: Bearer <api_key>
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Clients listed successfully. Returns an array of client objects ordered by creation date descending.
Show child attributes
Was this page helpful?