Mutation
mutation UpdateWebhookCallback($input: UpdateWebhookCallbackInput!) {
updateWebhookCallback(input: $input) {
clientMutationId
errors
webhookCallback {
apiKey
consecutiveFailures
createdAt
disabled
disabledAt
id
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"updateWebhookCallback": {
"clientMutationId": "string",
"errors": [
"string"
],
"webhookCallback": {
"apiKey": "string",
"consecutiveFailures": 1,
"createdAt": "value",
"disabled": true,
"disabledAt": "value",
"id": "id"
}
}
}
}Mutations
updateWebhookCallback
Modify an outbound webhook to change its endpoint, secret, or event subscription
Required scope: host:write:network_integrations
MUTATION
updateWebhookCallback(input: UpdateWebhookCallbackInput!): UpdateWebhookCallbackPayloadArguments
input
required
Parameters for UpdateWebhookCallback
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
webhookCallback
Mutation
mutation UpdateWebhookCallback($input: UpdateWebhookCallbackInput!) {
updateWebhookCallback(input: $input) {
clientMutationId
errors
webhookCallback {
apiKey
consecutiveFailures
createdAt
disabled
disabledAt
id
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"updateWebhookCallback": {
"clientMutationId": "string",
"errors": [
"string"
],
"webhookCallback": {
"apiKey": "string",
"consecutiveFailures": 1,
"createdAt": "value",
"disabled": true,
"disabledAt": "value",
"id": "id"
}
}
}
}