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/15 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.10.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 |
country | String | Which country the page belongs to |
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: 200
{
"id": 15,
"name": "...",
"url": "...",
"language": "...",
"locked": false,
"country": "...",
"data": "...",
"upload_ids": [
13,
14,
18
]
}