GET /api/navigation-item

Request

{}

Response

{
  "items": [
    {
      "id": "uuid",
      "navigationId": "uuid",
      "targetPageId": "uuid",
      "label": "Bezeichnung"
    },
    {
      "id": "uuid",
      "navigationId": "uuid",
      "targetPageId": "uuid",
      "label": "Bezeichnung"
    }
  ],
  "total": 2
}

GET /api/navigation-item/[id]

Request

{}

Response

{
  "id": "uuid",
  "navigationId": "uuid",
  "targetPageId": "uuid",
  "label": "Bezeichnung"
}

POST /api/navigation-item

Request

{
  "navigationId": "uuid",
  "targetPageId": "uuid",
  "label": "Bezeichnung"
}

Response

{
  "id": "uuid",
  "navigationId": "uuid",
  "targetPageId": "uuid",
  "label": "Bezeichnung"
}

PUT /api/navigation-item/[id]

Request

{
  "navigationId": "uuid",
  "targetPageId": "uuid",
  "label": "Bezeichnung"
}

Response

{
  "id": "uuid",
  "navigationId": "uuid",
  "targetPageId": "uuid",
  "label": "Bezeichnung"
}

DELETE /api/navigation-item/[id]

Request

{
}

Response

{
}

Tickets: PA-13