Pages
Use this endpoint to obtain details on Adaptix's landing pages.
Get Page
HTTP Request
GET /pages/ID
Response
Expected Response Code: 200
See JSON code example.
Page Properties
Name | Type | Description |
---|---|---|
id | int | ID of the page |
title | string | Title of the page |
description | string/null | Description of the page |
alias | string | Used to generate the URL for the page |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the page should be published |
publishDown | datetime/null | Date/time the page should be un published |
dateAdded | datetime | Date/time page was created |
createdBy | int | ID of the user that created the page |
createdByUser | string | Name of the user that created the page |
dateModified | datetime/null | Date/time page was last modified |
modifiedBy | int | ID of the user that last modified the page |
modifiedByUser | string | Name of the user that last modified the page |
language | string | Language locale of the page |
template | string | Template of the page |
customHtml | string | Static HTML of the page |
hits | int | Total page hit count |
uniqueHits | int | Unique page hit count |
revision | int | Page revision |
metaDescription | Meta description for the page's | |
redirectType | int | If unpublished, redirect with 301 or 302 |
redirectUrl | string | If unpublished, the URL to redirect to if redirectType is set |
translationChildren | array | Array of Page entities for translations of this landing page |
translationParent | object | The parent/main page if this is a translation |
variantHits | Hit count since variantStartDate | |
variantChildren | array | Array of Page entities for variants of this landing page |
variantParent | object | The parent/main page if this is a variant (A/B test) |
variantSettings | array | The properties of the A/B test |
variantStartDate | datetime/null | The date/time the A/B test began |
List Pages
HTTP Request
GET /pages
Query Parameters
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Page.
Create Page
HTTP Request
POST /pages/new
Post Parameters
Name | Description |
---|---|
title | Page title is the only required field |
alias | string |
description | A description of the page. |
isPublished | A value of false or true |
language | string |
metaDescription | Meta description for the page's |
redirectType | int |
redirectUrl | string |
Response
Expected Response Code: 201
Properties
Same as Get Page.
Edit Page
PUT creates a page if the given ID does not exist and clears all the page information, adds the information from the request. PATCH fails if the page with the given ID does not exist and updates the page field values with the values form the request.
HTTP Request
To edit a page and return a 404 if the page is not found:
PATCH /pages/ID/edit
To edit a page and create a new one if the page is not found:
PUT /pages/ID/edit
Post Parameters
Name | Description |
---|---|
title | Page title is the only required field |
alias | Name alias generated automatically if not set |
description | A description of the page. |
isPublished | A value of false or true |
language | string |
metaDescription | Meta description for the page's |
redirectType | int |
redirectUrl | string |
Response
If PUT
, the expected response code is 200
if the page was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Page.
Delete Page
Delete a page.HTTP Request
DELETE /pages/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Page.