Restaurantmenüs
Abfrage und Verwaltung Ihrer Restaurantmenüs über die API.
GET https://rqrcode.com/api/restaurant-menus/
curl --request GET \
--url 'https://rqrcode.com/api/restaurant-menus/' \
--header 'Authorization: Bearer {api_key}'
| Parameter | Weitere Details | Beschreibung |
|---|---|---|
| page |
Optionales Feld
ui.admin.api_docs.common.types.Ganzzahl
|
Die Seitennummer, für die Sie die Ergebnisse erhalten möchten. Standardmäßig 1. |
| results_per_page |
Optionales Feld
ui.admin.api_docs.common.types.Ganzzahl
|
Wie viele Ergebnisse Sie pro Seite möchten. Erlaubte Werte sind: 10, 25, 50, 100, 250, 500, 1000. Standardmäßig 25. |
{
"data": [
{
"id": 1,
"project_id": null,
"name": "Mittagsmenü",
"description": "Mittagskarte",
"datetime": "2026-04-20 07:55:48"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://rqrcode.com/api/restaurant-menus?page=1",
"last": "https://rqrcode.com/api/restaurant-menus?page=1",
"next": null,
"prev": null,
"self": "https://rqrcode.com/api/restaurant-menus?page=1"
}
}
GET https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}
curl --request GET \
--url 'https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}' \
--header 'Authorization: Bearer {api_key}'
{
"data": {
"id": 1,
"project_id": null,
"name": "Mittagsmenü",
"description": "Mittagskarte",
"datetime": "2026-04-20 07:55:48"
}
}
POST https://rqrcode.com/api/restaurant-menus
curl --request POST \
--url 'https://rqrcode.com/api/restaurant-menus' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Abendmenü'
| Parameter | Weitere Details | Beschreibung |
|---|---|---|
| name |
Erforderlich
ui.admin.api_docs.common.types.Zeichenkette
|
— |
| description |
Optionales Feld
ui.admin.api_docs.common.types.Zeichenkette
|
— |
| project_id |
Optionales Feld
ui.admin.api_docs.common.types.Ganzzahl
|
— |
{
"data": {
"id": 1
}
}
POST https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}
curl --request POST \
--url 'https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Abendmenü'
| Parameter | Weitere Details | Beschreibung |
|---|---|---|
| name |
Optionales Feld
ui.admin.api_docs.common.types.Zeichenkette
|
— |
| description |
Optionales Feld
ui.admin.api_docs.common.types.Zeichenkette
|
— |
| project_id |
Optionales Feld
ui.admin.api_docs.common.types.Ganzzahl
|
— |
{
"data": {
"id": 1
}
}
DELETE https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}
curl --request DELETE \
--url 'https://rqrcode.com/api/restaurant-menus/{restaurant_menu_id}' \
--header 'Authorization: Bearer {api_key}'
Leerer 200-Response-Body bei Erfolg.