Get Custom Pages
Gets a list of custom pages associated with the webstore. These contain a content variable with the HTML content of the page.
Gets a list of custom pages associated with the webstore. These contain a content variable with the HTML content of the page.
Responses
200
Successful response returns the webstore's pages.
application/json
get/pages
GET /api/accounts/pages HTTP/1.1
Host: headless.tebex.io/
Accept: */*
200
Successful response returns the webstore's pages.
{
"data": [
{
"id": 127,
"created_at": "2023-11-13T20:59:54.000000Z",
"updated_at": "2023-11-13T20:59:54.000000Z",
"account_id": 244,
"title": "About",
"slug": "about",
"private": false,
"hidden": false,
"disabled": false,
"sequence": false,
"content": "<p>This is a custom page which you can add your own content to if you wish.</p>\n\n<p>You can modify your pages by going to <strong>Webstore</strong> > <strong>Pages</strong> from within the\nTebex Store control panel.</p>\n\n<p>Make sure to take a look at our <a href=\"https://help.tebex.io\" rel=\"noreferrer\" target=\"_blank\">knowledgebase</a>\nfor helpful guides on getting started.</p>"
}
]
}Last updated