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

page[number]
integer
page[size]
integer

Number of documents

fields[website_pages]
string

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

Response

Success, list of website pages which the current user may access

data
object[]