Mutation
mutation DeleteWebhookCallback($input: DeleteWebhookCallbackInput!) {
deleteWebhookCallback(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteWebhookCallback": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}Mutations
deleteWebhookCallback
Remove an outbound webhook so this Network stops delivering event payloads to its endpoint
Required scope: host:write:network_integrations
MUTATION
deleteWebhookCallback(input: DeleteWebhookCallbackInput!): DeleteWebhookCallbackPayloadArguments
input
required
Parameters for DeleteWebhookCallback
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedId
ID
errors
[String!]!
Mutation
mutation DeleteWebhookCallback($input: DeleteWebhookCallbackInput!) {
deleteWebhookCallback(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteWebhookCallback": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}