Passer au contenu principal
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.

Scope requis : USERS_READ
Retourne tous les membres de l’equipe en une seule reponse. Cet endpoint n’est pas pagine.

Autorisations

Authorization
string
header
requis

Paramètres de requête

role
enum<string>
Options disponibles:
ADMIN,
MANAGER,
MEMBER
status
enum<string>
défaut:ACTIVE
Options disponibles:
ACTIVE,
BLOCKED

Réponse

List of users

data
object[]