Get website page by id

GET /customer/websites/pages/@id

Request

URL parameters

Replace the @ keywords in the URL with their corresponding value.

A dictionary with fields

Field Type Description
id Int An integer value

Example request 1

GET /customer/websites/pages/18 HTTP/1.1
Host: api.bakeronline.be
X-VERSION: 1.9.0
Accept-Language: en-US,en;q=0.5

Response

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

Example response 1

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 177

{
    "id": 14,
    "name": "...",
    "url": "...",
    "language": "...",
    "locked": true,
    "data": "...",
    "upload_ids": [
        16,
        10,
        17
    ]
}
1.9.0 stable