OBJECT
ProcessWebhook
link GraphQL Schema definition
- type ProcessWebhook {
- # HTTP request method
- : ProcessWebhookRequestType!
- # Target URL the webhook request is sent to. Must be an https address and may
- # contain personalization tags.
- : String!
- # Format of the request body: plain text, JSON or XML.
- : ProcessWebhookRequestFormat!
- # Fields to include in the request body, given as field identifiers or
- # personalization markers. Mutually exclusive with advanced content.
- : [String!]
- # Free-form request body template with personalization tags. Mutually exclusive
- # with simple content.
- : String
- # How date and time values in the request body are formatted: a Unix timestamp or
- # an ISO 8601 string.
- : ProcessWebhookTimeFormat!
- # Optional HTTP basic authentication credentials sent with the request.
- : ProcessWebhookBasicAuth
- # Custom HTTP headers sent with the webhook request.
- : [ProcessWebhookHeader!]
- }