You can manage your organization’s team members from the dashboard or via the API. All team management endpoints require anDocumentation Index
Fetch the complete documentation index at: https://docs.scaling.cloud/llms.txt
Use this file to discover all available pages before exploring further.
org:admin role.
Scaling has two roles:
org:admin— Full access to all settings, including inviting and removing members, managing roles, and configuring escalation policies and on-call schedules.org:member— Can view and manage incidents but cannot access team or organization settings.
Navigate to Team Members in the dashboard
In the Scaling dashboard, go to Settings → Team Members. From here you can see all current members, any pending invitations, and manage roles without using the API.To invite someone, click Invite member, enter their email address, choose a role, and send the invitation. They’ll receive an email with a link to join your organization.
Invite a member via the API
Send a A successful response returns the invitation:The invitee receives an email with a link to accept the invitation and join your organization. The invitation stays in
POST request to /api/team/members/invite with the invitee’s email address and desired role.pending status until they accept or you revoke it.List members and pending invitations
Send a
GET request to /api/team/members to see all current members and outstanding invitations in a single response.Update a member's role
Send a The response confirms the updated role:
PATCH request to /api/team/members/{userId}/role to promote or demote a member. Replace {userId} with the member’s user ID from the list response.Revoke a pending invitation
If you need to cancel an invitation before it’s accepted, send a The invitation link in the invitee’s email will no longer work after revocation.
DELETE request to /api/team/members/invitations/{invitationId}. Replace {invitationId} with the ID from the invitation list.Remove a member
Send a The removed member will lose access to all incidents, schedules, and settings immediately. Their historical activity (such as incident status changes they made) is preserved.
DELETE request to /api/team/members/{userId} to remove an existing member from your organization. This immediately revokes their access.