Classic APIs
ClassicOrganizationsApi
orgMemberPermissions

orgMemberPermissions

Gets permissions for a specific member of an organization.

Parameters

NameTypeDescription
orgIdIdentifierThe ID of the organization to get a users permissions for.
userIdIdentifierThe ID of the user to get permissions for.

Example

const { data: perms } = await ClassicOrganizationsApi.orgMemberPermissions({
  orgId: "4244556007738484576",
  userId: 45348281,
}); 

Example Data

{
  isOwner: true,
  canConfigureOrganization: true,
  canManageRoles: true,
  canManageMembers: true,
  canViewAnalytics: true,
  canPlayExperiences: true,
  canEditExperiences: true,
} 

Endpoint

GET /v1/organizations/{orgId}/users/{userId}/permissions