Skip to content
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.

LocationController: GET

Philipp Heim edited this page Jun 4, 2020 · 2 revisions

Für einen GET-Request gibt es zwei Endpoints:

  • Alle Standorte verlangen.
  • Ein bestimmten Standort, per ID, verlangen.

Beispiel für ein GET für Standorte (GET: /api/location):

[
  {
    "id": 1,
    "name": "Test Filiale 1",
    "address": {
      "id": 7,
      "street": "Königsberger Str. 3",
      "zip": "79189",
      "city": "Freiburg"
    }
  }
]

Beispiel für ein GET für ein Produkt mit der ID=2 (GET: /api/location/2):

{
    "id": 2,
    "name": "Filiale 2",
    "address": {
        "id": 2,
        "street": "Königsgasse 13",
        "zip": "77779",
        "city": "Berlin"
    }
}