INPUT_OBJECT

AuthInfoInput

Description

The authentication type and token to authenticate the endpoint.

link GraphQL Schema definition

  • input AuthInfoInput {
  • # The type of authentication that protects the URL endpoint.
  • authType: AuthenticationType!
  • # The token used for authentication.
  • token: String
  • # The username and password of the user to authenticate the endpoint.
  • userCredentials: UserCredentials
  • # The custom authentication header key and value to authenticate the endpoint.
  • customHeader: CustomHeader
  • }