OBJECT

OrgDomainSettings

link GraphQL Schema definition

1type OrgDomainSettings {
2
3# The domain name for which specific authorization group and roles apply.
4domainName: String!
5
6# The ID of the authorization group associated with the domain.
7authGroupId: ID!
8
9# An array of application role IDs assigned to users registering with this domain.
10applicationRoleIds: [String]!
11
12}