Get Base Custom menu
This endpoint retrieves the base (default) custom menu.
info
Custom Menus are a "public object" visible both to not authenticated users and in closed communities.
HTTP Request
GET /api/v2/custom_menu/base/
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/custom_menu/base/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/custom_menu/base/ \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | Custom Menu |