Skip to main content
GET
https://app.autocalls.ai/api/
/
white-label
/
users
Get platform users
curl --request GET \
  --url https://app.autocalls.ai/api/white-label/users \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "John Doe",
      "email": "[email protected]",
      "minutes_balance": 150.5,
      "credits_balance": 500,
      "created_at": "2025-01-05T10:30:00.000000Z"
    },
    {
      "id": 124,
      "name": "Jane Smith",
      "email": "[email protected]",
      "minutes_balance": 75.25,
      "credits_balance": 250,
      "created_at": "2025-01-06T14:20:00.000000Z"
    }
  ]
}
This endpoint returns a list of all users that belong to your white label platform. Use this to display user lists and manage your platform users.
This endpoint is only available for white label admins. Regular users will receive a 403 Forbidden error.

Response

data
array
Array of user objects
{
  "data": [
    {
      "id": 123,
      "name": "John Doe",
      "email": "[email protected]",
      "minutes_balance": 150.5,
      "credits_balance": 500,
      "created_at": "2025-01-05T10:30:00.000000Z"
    },
    {
      "id": 124,
      "name": "Jane Smith",
      "email": "[email protected]",
      "minutes_balance": 75.25,
      "credits_balance": 250,
      "created_at": "2025-01-06T14:20:00.000000Z"
    }
  ]
}

Use Cases

  • Display user list in your custom white label management dashboard
  • Lookup user IDs for use with the transfer balance endpoint
  • Monitor user balances to identify users who need credits