Get a list of clients for the login user

Retrieves a list of client for the login user. Requires a JWT bearer token.

Responses
  • application/json
  • 401

    Unauthorized

  • 403

    Forbidden

Request Example for get/v1/subscriber/clients
curl https://api.broker.v1.demo.affordx.nz/v1/subscriber/clients \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[
  {
    "id": "string",
    "firstName": "string",
    "lastName": "string",
    "email": "hello@example.com"
  }
]