WebhookCallbackPatchInput

open_in_new

Specifies the callback details for the patch input

GraphQL Schema definition

  • input WebhookCallbackPatchInput {
  • # The host for the webhook HTTP request (not required for patch)
  • host: String
  • # transport scheme (https or http), @default https
  • scheme: String
  • # http port, @default if scheme is https 443, if http 80
  • port: Int
  • # the rest of the HTTP URI path
  • path: String
  • # url query parameters
  • queryParams: [KeyValueInput]
  • # additional HTTP headers
  • additionalHeaders: [KeyValueInput]
  • # type of credential used for the webhook
  • credType: WebhookCredType
  • # credential key
  • credKey: String
  • # credential secret
  • credSecret: String
  • }