OBJECT

OauthRequestPayload

Description

Payload for OAuth registration.

link GraphQL Schema definition

  • type OauthRequestPayload {
  • # Client ID of OAuth request.
  • clientId: String!
  • # State of OAuth request.
  • state: String!
  • # Redirect URI of OAuth request.
  • redirectUri: String!
  • # Response type of OAuth request.
  • responseType: String!
  • # Code challenge of OAuth request.
  • codeChallenge: String!
  • # Code challenge method of OAuth request.
  • codeChallengeMethod: String!
  • # Scope of OAuth request.
  • scope: String!
  • }