All team management endpoints require the
org:admin role. Requests from non-admin members will receive a 401 not_authorized error.GET /api/team/members
List all current members of your organization and any pending invitations. AuthenticationPOST /api/team/members/invite
Send an invitation to a new member by email address. The invited person will receive an email prompting them to join your organization. AuthenticationThe email address to send the invitation to. Must be a valid email and no longer than 320 characters.
The role to assign to the invitee upon accepting. Use
org:admin to grant admin access or org:member for standard access.PATCH /api/team/members//role
Update the role of an existing organization member. AuthenticationThe ID of the member whose role you want to update. You can retrieve member IDs from the
GET /api/team/members response.The new role to assign to the member.
DELETE /api/team/members/
Remove a member from your organization. This revokes their access immediately. AuthenticationThe ID of the member to remove. You can retrieve member IDs from the
GET /api/team/members response.DELETE /api/team/members/invitations/
Revoke a pending invitation. The invitee will no longer be able to accept it. AuthenticationThe ID of the invitation to revoke. You can retrieve invitation IDs from the
GET /api/team/members response.