Mutations
updateApiKey
Updates an existing API key. This can be used to change the key’s name or other properties.
MUTATION
updateApiKey(input: APIKeyInput!): UpdateAPIKeyArguments
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.
Updates an existing API key. This can be used to change the key’s name or other properties.
updateApiKey(input: APIKeyInput!): UpdateAPIKeymutation UpdateApiKey($input: APIKeyInput!) {
updateApiKey(input: $input) {
apikey {
_created
_etag
_updated
clientId
clientSecret
createdByApiClient {
id
name
}
}
}
}{
"input": {
"_etag": "string",
"clientId": "string"
}
}{
"data": {
"updateApiKey": {
"apikey": {
"_created": "value",
"_etag": "string",
"_updated": "value",
"clientId": "string",
"clientSecret": "string",
"createdByApiClient": {
"id": 1,
"name": "string"
}
}
}
}
}Was this page helpful?
mutation UpdateApiKey($input: APIKeyInput!) {
updateApiKey(input: $input) {
apikey {
_created
_etag
_updated
clientId
clientSecret
createdByApiClient {
id
name
}
}
}
}{
"input": {
"_etag": "string",
"clientId": "string"
}
}{
"data": {
"updateApiKey": {
"apikey": {
"_created": "value",
"_etag": "string",
"_updated": "value",
"clientId": "string",
"clientSecret": "string",
"createdByApiClient": {
"id": 1,
"name": "string"
}
}
}
}
}Suggestions