Skip to content

inviteSsoGroup

Assigns roles to SSO groups in the current organization using the given group name and role IDs.

Arguments

Argument Type Description
input (required) InviteSsoGroupInput! Specifies the input required for inviting new SSO groups to the current organization.

Returns

Boolean!

Sample

mutation InviteSsoGroup($input: InviteSsoGroupInput!) {
  inviteSsoGroup(input: $input)
}
{
  "input": {
    "groupName": "example-string",
    "roleIds": [
      "example-string"
    ]
  }
}
{
  "data": {
    "inviteSsoGroup": true
  }
}