{ "opencollection": "1.0.0", "info": { "name": "Kajabi API V1 Authentication Landing pages API", "version": "1.1.0" }, "items": [ { "info": { "name": "Landing pages", "type": "folder" }, "items": [ { "info": { "name": "List landing pages", "type": "http" }, "http": { "method": "GET", "url": "https://api.kajabi.com/v1/landing_pages", "params": [ { "name": "sort", "value": "", "type": "query", "description": "Sort order, use: title for descending order use '-' e.g. &sort=-title" }, { "name": "page[number]", "value": "", "type": "query" }, { "name": "page[size]", "value": "", "type": "query", "description": "Number of documents" }, { "name": "fields[landing_pages]", "value": "", "type": "query", "description": "Partial attributes as specified, e.g. fields[landing_pages]=title" }, { "name": "filter[title_cont]", "value": "", "type": "query", "description": "Filter by title contains, for example ?filter[title_cont]=about" }, { "name": "filter[published]", "value": "", "type": "query", "description": "Filter by published status, for example ?filter[published]=true" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of landing pages which the current user may access\n\n## Pagination\nUse `page[number]` and `page[size]` parameters to paginate results:\n### Get first page of 10 items\n* `GET /v1/landing_pages[number]=1&page[size]=10`\n### Get second page of 25 items\n* `GET /v1/landing_pages[number]=2&page[size]=25`\n\n## Sparse Fields\nUse the `fields[landing_pages]` parameter to request only specific attributes:\n### Only return title attribute\n* `GET /v1/landing_pages?fields[landing_pages]=title`\n\n## S" }, { "info": { "name": "Landing page details", "type": "http" }, "http": { "method": "GET", "url": "https://api.kajabi.com/v1/landing_pages/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Landing page ID" }, { "name": "fields[landing_pages]", "value": "", "type": "query", "description": "Partial attributes as specified, e.g. fields[landing_pages]=title" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Shows details of a landing page\n\n## Landing Page Attributes\n* `title` (string) - Title of the landing page\n* `url` (string) - URL of the landing page\n* `publish_at` (string) - Date and time the landing page will be published\n* `created_at` (string) - Date and time the landing page was created\n* `updated_at` (string) - Date and time the landing page was updated\n\n## Sparse Fields\n### Only return title attribute\n* `GET /v1/landing_pages/123?fields[landing_pages]=title`\n\nResponse will only include r" } ] } ], "bundled": true }