GET
/
v1
/
forms
/
{id}
Form details
curl --request GET \
  --url https://api.kajabi.com/v1/forms/{id} \
  --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.

Path Parameters

id
string
required

Query Parameters

include
string

Load the related resources, for example ?include=fields,site,offer,contact_tags

fields[forms]
string

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

Response

Success, shows details of a form

data
object