Mutations
deleteApiKey
Deletes an existing API key. This will revoke access for any application or script using this key.
MUTATION
deleteApiKey(input: APIKeyInput!): DeleteAPIKeyArguments
input
required
Returns
apikey
Mutation
Variables
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes an existing API key. This will revoke access for any application or script using this key.
deleteApiKey(input: APIKeyInput!): DeleteAPIKeymutation DeleteApiKey($input: APIKeyInput!) {
deleteApiKey(input: $input) {
apikey {
_created
_etag
_updated
clientId
clientSecret
createdByApiClient {
id
name
}
}
}
}{
"input": {
"_etag": "string",
"clientId": "string"
}
}{
"data": {
"deleteApiKey": {
"apikey": {
"_created": "value",
"_etag": "string",
"_updated": "value",
"clientId": "string",
"clientSecret": "string",
"createdByApiClient": {
"id": 1,
"name": "string"
}
}
}
}
}Was this page helpful?
mutation DeleteApiKey($input: APIKeyInput!) {
deleteApiKey(input: $input) {
apikey {
_created
_etag
_updated
clientId
clientSecret
createdByApiClient {
id
name
}
}
}
}{
"input": {
"_etag": "string",
"clientId": "string"
}
}{
"data": {
"deleteApiKey": {
"apikey": {
"_created": "value",
"_etag": "string",
"_updated": "value",
"clientId": "string",
"clientSecret": "string",
"createdByApiClient": {
"id": 1,
"name": "string"
}
}
}
}
}Suggestions