v1

latestOpenAPI 3.0.22026-07-146168117.0 KB
Webhooks

This endpoint returns a webhook for a form by ID. Please note that this feature is exclusively available as part of the Business API.

get/webhooks/{id}

Path parameters

idstring required

The ID of the webhook to get results for.

Response

Successfully returned a webhook for a form by ID

status'ok'

Example response

{
  "results": {
    "webhook": {
      "target_url": "https://example.com/webhook",
      "triggers": [
        "submission"
      ],
      "created_at": "2018-01-01T12:00:00Z",
      "updated_at": "2018-01-01T12:00:00Z",
      "account_timezone": "America/Los_Angeles",
      "created_at_utc": "2018-01-01T12:00:00Z",
      "updated_at_utc": "2018-01-01T12:00:00Z"
    }
  }
}