INPUT_OBJECT

CreateJwtInput

Autogenerated input type of CreateJwt

link GraphQL Schema definition

  • input CreateJwtInput {
  • # A unique identifier for the client performing the mutation.
  • client_mutation_id: String
  • # Run the mutation with no side effects in validate-only mode. When true, the
  • # inputs will be validated and errors will be returned, but the mutation will not
  • # perform any actions.
  • skip_save: Boolean
  • # If the owner of the access keys is the owner of an Organization, you may specify
  • # a `user_id` of any User within the organization for whom the scope of the JWT
  • # shall be limited. This may be useful, for example, in the case where you want to
  • # expose a User-scoped JWT for use in a front end application without granting
  • # access to administrative privileges over your entire Organization.
  • user_id: ID
  • # Provide a valid client_key associated with the user account to authenticate. If
  • # you have been granted API access, you should have received you client_key from a
  • # Vydia representative.
  • client_key: String
  • # Provide a valid secret_key associated with the user account to authenticate. If
  • # you have been granted API access, you should have received you secret_key from a
  • # Vydia representative.
  • secret_key: String
  • # Amount of time in seconds during which the resulting JWT will be valid. Defaults
  • # to 3600 seconds (1 hour) if omitted.
  • ttl: Int
  • }