Skip to main content
GET
/
api
/
v1
/
forms
/
{form_token}
/
integrations
/
webhooks
/
sample_payload
Get a sample payload
curl --request GET \
  --url https://formhug.ai/api/v1/forms/{form_token}/integrations/webhooks/sample_payload \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "event_type": "entry_created",
    "data": {
      "form": "Wabc12",
      "form_name": "Customer feedback",
      "entry": {
        "serial_number": 123,
        "total_price": 123,
        "preferential_price": 123,
        "field_1": "Jack",
        "field_2": "support@formhug.ai",
        "x_field_1": "This is a passage",
        "color_mark": "Green",
        "creator_name": "Jim",
        "created_at": "2026-05-12T10:48:13.909Z",
        "updated_at": "2026-05-12T10:48:13.909Z",
        "info_filling_duration": 123,
        "info_platform": "Macintosh",
        "info_os": "OS X 10.15.7",
        "info_browser": "Chrome 147.0.0.0",
        "info_remote_ip": "127.0.0.1",
        "info_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36",
        "reservation_status_fsf_field": "Booked"
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://formhug.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Personal Access Token prefixed with fh_. Sent as Authorization: Bearer fh_xxx. The scope required by each endpoint is listed in that endpoint's description.

Path Parameters

form_token
string
required

Query Parameters

trigger_event
enum<string>

Target event_type; defaults to the first registered event when omitted

Available options:
entry_created,
entry_updated,
entry_paid

Response

Success

data
object
required
Last modified on May 21, 2026