Skip to main content
GET
/
forms
/
{id}
/
webhook
/
status
Get Webhook Status
curl --request GET \
  --url https://geniusforms.ai/api/v1/forms/{id}/webhook/status \
  --header 'X-API-Key: <api-key>'
{
  "enabled": true,
  "url": "https://example.com/webhook",
  "lastDelivery": {
    "status": "success",
    "responseCode": 123,
    "error": "<string>",
    "attemptedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

API key obtained from your GeniusForms dashboard

Path Parameters

id
integer
required

Form ID

Response

Webhook status

enabled
boolean
Example:

true

url
string | null
Example:

"https://example.com/webhook"

lastDelivery
object