Get Sample Webhook Submission

Send Sample Submission

Endpoint: POST https://app.quizify.io/api/webhooks/sample-submissions

This endpoint is used primarily for testing purposes, such as during Zapier or custom webhook integration setup. It allows authenticated users to fetch a sample submission payload from a specified funnel using its shortcode. The response simulates a real webhook payload so you can preview and configure your automation logic accordingly.

Request Body:

{
  "shortcode": "FUNNEL_SHORTCODE"
}

Success Response:

Returns a simulated webhook-style JSON object representing the most recent submission from the specified funnel.

[
  {
    "ID": 1720519820,
    "Funnel Title": "Customer Preference Quiz",
    "Source": "Quizify",
    "First Name": "John",
    "Last Name": "Doe",
    "Email": "john.doe@example.com",
    "Favorite Color": "Blue",
    "Result logic": "Score",
    "Score Value": 85,
    "Score Category": "High Score",
    "Tags": ["personalized", "loyal", "mid-tier"],
    "Submission Date": "2025-07-09T11:25:40+05:30",
    "Time to Complete in HH:MM:SS Format": "00:02:30"
  }