PROD

This service will return the details of a static page

Resource information
AuthenticationRequired (API Token, Bearer)
Scopeexpress-base
HTTP MethodGET
ResponseJSON
Version1

Resource URL

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

Sample code

GET /api/action/express-v1/pages/static/home HTTP/1.1
Host: mapaprop.app
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Authorization: Bearer {access_token}

Response

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

ObjectFieldTypeRequiredDescription
ResponsepagePageyesThe Page object
PagekeywordsstringnoKeywords configured by the customer
descriptionstringyesThe description of the page

Sample response

{
    "page": {
        "keywords": "word1 word2 another word",
        "description": "This is a long description that can go thru manuy lines",
    }
}