ReferenceNotifications (webhooks)
unsubscribeNotificationEventType mutation
Unsubscribes an event type from all callback configurations in the notification profile. You can unsubscribe from only one event type per request.
Syntax
1mutation {2 unsubscribeNotificationEventType(5}
Example
- Request
- Response
1mutation {2 unsubscribeNotificationEventType (3 input: {4 eventType: "ReviewsApproved"5 })6 {7 eventType8 }9}
Arguments
Name | Description |
---|---|
| Required. Event types and callback configuration ID. Type: UnsubscribeNotificationEventTypeInput |
Types
Name | Type | |||||
---|---|---|---|---|---|---|
String | String | |||||
The | ||||||
UnsubscribeNotificationEventTypeInput | InputObject | |||||
Event types to unsubscribe from.
| ||||||
UnsubscribeNotificationEventTypePayload | Object | |||||
Event type that was unsubscribed.
|