Skip to main content
GET
/
v2
/
api
/
users
List users
curl --request GET \
  --url https://api.withallo.com/v2/api/users \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "usr-abc123",
      "name": "Alex Kim",
      "email": "[email protected]",
      "role": "ADMIN",
      "status": "ACTIVE",
      "image_url": "https://storage.withallo.com/avatars/usr-abc123.jpg"
    },
    {
      "id": "usr-def456",
      "name": "Jordan Lee",
      "email": "[email protected]",
      "role": "MEMBER",
      "status": "ACTIVE",
      "image_url": null
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://help.withallo.com/llms.txt

Use this file to discover all available pages before exploring further.

Required scope: USERS_READ
Returns all team members in a single response. This endpoint is not paginated.

Authorizations

Authorization
string
header
required

Query Parameters

role
enum<string>
Available options:
ADMIN,
MANAGER,
MEMBER
status
enum<string>
default:ACTIVE
Available options:
ACTIVE,
BLOCKED

Response

List of users

data
object[]