GET
/
v1
/
forms
List forms
curl --request GET \
  --url https://api.kajabi.com/v1/forms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "forms",
      "attributes": {
        "title": "<string>",
        "default": true,
        "webhook_url": {},
        "url": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "relationships": {
        "site": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        },
        "offer": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        },
        "fields": {
          "data": [
            {
              "id": "<string>",
              "type": "<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: title for descending order use '-' e.g. &sort=-title

page[number]
integer
page[size]
integer

Number of documents

fields[forms]
string

Partial attributes as specified, e.g. fields[forms]=title

filter[site_id]
string

Filter by site_id, for example ?filter[site_id]=111

filter[title_cont]
string

Filter by title contains, for example ?filter[title_cont]=course

Response

Success, list of forms which the current user may access

data
object[]