OBJECT

FormWebhook

A webhook configuration for specific forms.

link GraphQL Schema definition

  • type FormWebhook {
  • # The form that this webhook is linked to.
  • form: Form
  • # The unique ID.
  • id: Int!
  • # The webhook module.
  • webhook_module: WebhookModule
  • # URL the hook will call.
  • url: String
  • # Human friendly name of the webhook.
  • name: String
  • # Webhook secret.
  • secret_key: String
  • # User who created the webhook.
  • created_by: User
  • # Time webhook was created.
  • created_time: DateTime
  • # Webhook active status.
  • is_active: Boolean
  • }