Users

User management operations

Get all users in the organization

get

Returns all users that are members of the current organization.

Authorizations
Responses
200

Returns an array of users with their information

application/json
get
/api/users
GET /api/users HTTP/1.1
Host: 
Accept: */*
200

Returns an array of users with their information

[
  {
    "id": "user_123",
    "firstName": "John",
    "lastName": "Doe",
    "imageUrl": "https://img.clerk.com/..."
  }
]

Last updated

Was this helpful?