/services/websites/v1/menus/all
X-RateLimit-Limit
60
X-RateLimit-Remaining
57
error
message
data
errors
Retry-After
curl -X POST "https://api.wemasy.nl/api/services/websites/v1/menus/all" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Accept: application/json"
fetch('https://api.wemasy.nl/api/services/websites/v1/menus/all', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_TOKEN', 'Accept': 'application/json' }}) .then(r => r.json()) .then(data => console.log(data));
$response = Http::withToken('YOUR_API_TOKEN') ->accept('application/json') ->post('https://api.wemasy.nl/api/services/websites/v1/menus/all'); $data = $response->json();
import requests headers = { "Authorization": "Bearer YOUR_API_TOKEN", "Accept": "application/json" } r = requests.post("https://api.wemasy.nl/api/services/websites/v1/menus/all", headers=headers) print(r.json())
{ "error": false, "message": "string", "data": [] }