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!
  • # Expiration date of the identity providers metadata.
  • expirationDate: DateTime
  • }

link Require by