ALPHA

This service will return the list of menus available for the website.

Resource information
Authentication Required
HTTP Method GET
Response JSON
Version 1

Resource URL

<https://www.mapapropapp.com/api/action/express-v1/menus>

Sample code

GET /api/action/express-v1/menus HTTP/1.1
Host: www.mapapropapp.com
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.

Object Field Type Required Description
Response menus Array of Menu yes The list of Menu objects
Menu menu string yes The menu title
url string yes A seo like URL where you can get to the page (for later linking to it)
order int yes The order given by the customer. If no order were given you will see a 0

Sample response

{
    "menus": [
        {
            "menu": "Condiciones",
            "url": "condiciones-generales",
            "order": 0
        },
        {
            "menu": "Nuestras Ofertas",
            "url": "nuestras-ofertas",
            "order": 2
        }
    ]
}