WebhookUpdateInput Input Type
No description
input WebhookUpdateInput {
name: String
targetUrl: String
events: [WebhookEventTypeEnum!]
asyncEvents: [WebhookEventTypeAsyncEnum!]
syncEvents: [WebhookEventTypeSyncEnum!]
app: ID
isActive: Boolean
secretKey: String
query: String
customHeaders: JSONString
}
Fields
WebhookUpdateInput.name
● String
scalar miscellaneous
The new name of the webhook.
WebhookUpdateInput.targetUrl
● String
scalar miscellaneous
The url to receive the payload.
WebhookUpdateInput.events
● [WebhookEventTypeEnum!]
list enum webhooks
The events that webhook wants to subscribe.
DEPRECATED: this field will be removed in Saleor 4.0. Use asyncEvents
or syncEvents
instead.
WebhookUpdateInput.asyncEvents
● [WebhookEventTypeAsyncEnum!]
list enum webhooks
The asynchronous events that webhook wants to subscribe.
WebhookUpdateInput.syncEvents
● [WebhookEventTypeSyncEnum!]
list enum webhooks
The synchronous events that webhook wants to subscribe.
WebhookUpdateInput.app
● ID
scalar miscellaneous
ID of the app to which webhook belongs.
WebhookUpdateInput.isActive
● Boolean
scalar miscellaneous
Determine if webhook will be set active or not.
WebhookUpdateInput.secretKey
● String
scalar miscellaneous
Use to create a hash signature with each payload.
DEPRECATED: this field will be removed in Saleor 4.0. As of Saleor 3.5, webhook payloads default to signing using a verifiable JWS.
WebhookUpdateInput.query
● String
scalar miscellaneous
Subscription query used to define a webhook payload.
WebhookUpdateInput.customHeaders
● JSONString
scalar miscellaneous
Custom headers, which will be added to HTTP request. There is a limitation of 5 headers per webhook and 998 characters per header.Only X-*
, Authorization*
, and BrokerProperties
keys are allowed.
Member Of
webhookUpdate
mutation