GET /customer/websites/pages/@id
Replace the @ keywords in the URL with their corresponding value.
A dictionary with fields
Field | Type | Description |
---|---|---|
id | Int | An integer value |
GET /customer/websites/pages/12 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.8.0
Accept-Language: en-US,en;q=0.5
todo
Field | Type | Description |
---|---|---|
id | Int | Unique ID of the page |
name | String | Name of the page, usually used in the title HTML tag |
url | String | URL of the page |
language | String | Which language the page belongs to |
locked | Bool | Homepages are automatically generated and are locked. This means that they cannot be deleted |
data | String | A String value |
upload_ids | [Int] | Array of Int |
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 177
{
"id": 17,
"name": "...",
"url": "...",
"language": "...",
"locked": true,
"data": "...",
"upload_ids": [
12,
19,
13
]
}