ReferenceNotifications

deleteNotificationCallbackConfig mutation

Deletes a callback configuration from a notification profile using the callback ID.

Syntax

1mutation {
2 deleteNotificationCallbackConfig(
5}

Example

1mutation {
2 deleteNotificationCallbackConfig (
3 input: {
4 callbackConfigId: "1969081f-8380-4dbd-9a19-c26fc1747b06"
5 })
6 {
7 callbackConfigId
8 }
9}

Arguments

NameDescription

input

Required.

Callback configuration to delete.

Type: DeleteNotificationCallbackConfigInput

Types


Name
Type
DeleteNotificationCallbackConfigInput
InputObject

Callback configuration to delete.

FieldDescription
callbackConfigIdNot nullable.

ID of callback configuration to be deleted.

Type: ID
DeleteNotificationCallbackConfigPayload
Object

Callback configuration that was deleted.

FieldDescription
callbackConfigIdNot nullable.

ID of callback configuration that was deleted.

Type: ID
ID
ID

The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.