Skip to main content
API Keys are sensitive credentials. Store them securely and never expose them in client-side code.

Returns

createApiTokens
[ApiToken!]!
List of newly created API tokens. See ApiToken.

Arguments

input
CreateApiTokensInput
Configuration for the tokens to be created. See CreateApiTokensInput.

Example

mutation CreateApiTokens($input: CreateApiTokensInput) {
  createApiTokens(input: $input) {
    id
    token
    expiresTimeString
    requestLimit
    remaining
  }
}

Playground