GET
/
v1
/
form_submissions
List form submissions
curl --request GET \
  --url https://api.kajabi.com/v1/form_submissions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "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": {
        "site": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        },
        "form": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

sort
string

Sort order, use: name, email, created_at. For descending order use '-' e.g. &sort=-name

page[number]
integer
page[size]
integer

Number of documents

filter[site_id]
string

Filter by site ID, example: filter[site_id]=123

filter[form_id]
string

Filter by form ID, example: filter[form_id]=456

Response

Success, filtered by form_id

data
object[]