CreateCredentialInput
This struct represents the input for creating a new API credential, including the ID of the organization that the credential will be associated with and the friendly name assigned to the credential.
input CreateCredentialInput {
organization: UUID!
name: String!
}
Fields
CreateCredentialInput.organization
● UUID!
non-null scalar
The ID of the organization that the new API credential will be associated with.
CreateCredentialInput.name
● String!
non-null scalar
The friendly name assigned to the new API credential.
Member of
createCredential
mutation