PRODUCTION

This service will return the list of pages configured by the customer for this website

Resource information
AuthenticationRequired
HTTP MethodGET
ResponseJSON
Version1

Resource URL

https://mapaprop.app/api/action/express-v1/pages

Sample code

GET /api/action/express-v1/pages HTTP/1.1
Host: mapaprop.app
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Authorization: Bearer ya29.1.AADtN_UxybTdjLw9jX6lg_branSjjsldiwjtek4q2WvfETzSrz7Q6loEYoJEWd1x4qvlpGw

Response

A JSON document with the list of menus for the website. The menu is generated by the pages configured by the customer.

ObjectFieldTypeRequiredDescription
ResponsepagesArray of PageyesThe list of Page objects
PagepageIdintyesThe ID of the page
keywordsstringnoKeywords configured by the customer
showInMenubooleanyesThe customer decision to show this item as an item menu or not
descriptionstringyesThe description of the page
titlestringyesThe title of the page
urlstringyesSEO like url that can be used to link the page
timestampstringyesISO 8601 like for last modification of the page
menustringnoA menu description if this item is present in the menu
orderintyesThe order given by the customer. If no order were given you will see a 0

Sample response

{
    "pages": [
        {
            "keywords": "CONDICIONES DE ALQUILER TEMPORARIO",
            "showInMenu": true,
            "description": "Condiciones de alquiler temporario",
            "pageId": 8374,
            "title": "Condiciones generales",
            "menu": "Condiciones",
            "url": "condiciones-generales",
            "timestamp": "2014-05-10T22:35:24Z",
            "order": 0
        },
        {
            "keywords": "turismo Buenos aires",
            "showInMenu": true,
            "description": "Turismo Buenos aires",
            "pageId": 3957,
            "title": "Info Baires",
            "menu": "Info Baires",
            "url": "info-baires",
            "timestamp": "2014-09-14T04:47:52Z",
            "order": 5
        }
    ]
}