Docs
Get Users
GET /Organizations/{organizationId}/users
GET
/Organizations/{organizationId}/usersRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Returns all members and pending invitations for the organization. Active members show their full name and email. Pending invites show the invited email address with a Status of "Invited" and empty name fields.
Requires OrganizationBasicAccess permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| organizationId | Guid | Required | The organization to retrieve users for. |
Response
Returns a combined array of active members and pending invitations.
| Field | Type | Description |
|---|---|---|
| id | Guid | User ID (active members) or invitation ID (pending). |
| firstName | string | First name, or empty for pending invites. |
| lastName | string | Last name, or empty for pending invites. |
| string | Email address. | |
| status | string | `"Active"` or `"Invited"`. |