OBJECT

IdentityProvider

Description

Identity Provider is an entity responsible for authenticating a user account.

link GraphQL Schema definition

  • type IdentityProvider {
  • # Name of the Identity provider.
  • name: String!
  • # URL of single sign-on endpoint.
  • signInUrl: String!
  • # EntityId of the Identity provider.
  • entityId: String!
  • # URL of service provider initiated single sign-on.
  • spInitiatedSignInUrl: String!
  • # URL of service provider initiated single sign-on for the purpose of testing a
  • # configured identity provider.
  • spInitiatedTestUrl: String!
  • # URL of the single sign-out endpoint.
  • signOutUrl: String!
  • # ID of the organization that owns the identity provider.
  • ownerOrgId: String!
  • # Metadata of the identity provider in JSON format.
  • metadataJson: String!
  • # Signing certificate of the identity provider.
  • signingCertificate: String!
  • # Specifies whether the identity provider is the default.
  • isDefault: Boolean!
  • # Number of authorized groups for the identity provider.
  • authorizedGroupsCount: Int!
  • # Number of users from the identity provider that have an active session.
  • activeUserCount: Int!
  • # Expiration date of the identity providers metadata.
  • expirationDate: DateTime
  • # Unique identifier of the identity provider.
  • id: UUID!
  • # List of claim attributes of the identity provider.
  • idpClaimAttributes: [IdpClaimAttributeType!]!
  • }

link Require by