Skip to main content

Search Custom Menu

This endpoint performs search of a 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/search/

Parameters

NameInTypeRequiredDescription
searchquerystringfalseA search term for the name field

Example Request


const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/custom_page/search/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
countintegerfalsenoneTotal results count
nextstring(uri)¦nullfalsenoneNext page url
previousstring(uri)¦nullfalsenonePrevious page url
resultslist(CustomMenu)truenoneList of results

Example responses

{
"count": "integer",
"next": "string(uri)",
"previous": "string(uri)",
"results": [{CustomMenu}]
}