GET
/
api
/
v1
/
hooks
/
form_submission_sample
Form submission sample
curl --request GET \
  --url https://api.kajabi.com/api/v1/hooks/form_submission_sample \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "type": "form_submissions",
    "attributes": {
      "name": "<string>",
      "email": "<string>",
      "phone_number": "<string>",
      "business_number": "<string>",
      "address_line_1": "<string>",
      "address_line_2": "<string>",
      "address_city": "<string>",
      "address_state": "<string>",
      "address_country": "<string>",
      "address_zip": "<string>",
      "custom_1": "<string>",
      "custom_2": "<string>",
      "custom_3": "<string>"
    },
    "relationships": {
      "tags": {
        "data": [
          {
            "id": "<string>",
            "type": "forms"
          }
        ]
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success, returns sample webhook payload

id
string
type
enum<string>
Available options:
form_submissions
attributes
object
relationships
object