Skip to main content
GET
/
api
/
v2
/
clients
List All Clients
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>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Clients listed successfully. Returns an array of client objects ordered by creation date descending.

clients
object[]