GET URL: /api/v1/team/members
Headers
| Header | Value |
|---|---|
| Authorization | Bearer |
Response
The endpoint returns an array of team member objects.UUID of the team membership record.
UUID of the user account associated with this team member.
Email address of the team member.
Full name of the team member.
The member’s role. One of:
owner, admin, agent.Current availability status. One of:
live, away, offline.Whether the team member account is currently active.
ISO 8601 timestamp of when the member was invited.
Example
Response example
Remove a member
Method:DELETE URL: /api/v1/team/members/{member_id}
Permanently removes a team member from your organization. Only the org owner can perform this action. You cannot remove the owner.
Path parameters
The UUID of the team membership record to remove. Use the
id field from the List Members response, not the user_id.Example
Response example
Errors
| Status | Meaning |
|---|---|
| 400 | Cannot remove the org owner |
| 401 | Unauthorized — missing or invalid token |
| 403 | Forbidden — only the org owner can remove members |
| 404 | Team member not found |