Method
describeOrganizationGroup GET
Copy GET

Returns the specific organization group passed in by the user.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes organizationGroupId str The unique identifier of the organization group to be described.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result OrganizationGroup
KEY TYPE Description
organizationGroupId str The unique identifier of the Organization Group.
permissions List of Enum String The list of permissions (VIEW, MODIFY, ADMIN, BILLING, API_KEY, INVITE_USER) the group has.
groupName str The name of the Organization Group.
defaultGroup bool If true, all new users will be added to this group automatically.
admin bool If true, this group contains all permissions available to the organization and cannot be modified or deleted.
createdAt str When the Organization Group was created.

Exceptions:

TYPE WHEN
DataNotFoundError

organizationGroupId is not found.

Language: