Algemeen
Voor meer informatie rond de werking van uitzonderingen in RESTful service, wordt verwezen naar Werking en overzicht uitzonderingen MAGDA RESTful services. Op deze pagina zijn de verschillende response codes te vinden en voorbeelden ervan.
...
Bij een succesvol antwoord bevat de response een payload zoals omschreven op Beschrijving Antwoord (GET /attesten/asbestattesten/gebouweenheden/{gebouweenheidId} - v1inventaris (work in progress))
400 Bad Request door OVAM
...
Code Block | ||
---|---|---|
| ||
{ "title": "Bad Request", "status": 400, "detail": "DATA - Bad Request", "instance": "9f32f093-e5e8-40e0-89ca-fdaaf5635dae" }js |
404 Not found
Unknown gebouweenheidId
provided as path parameter in the request → nog aanpassen
Code Block | ||
---|---|---|
| ||
{
"title": "Not found",
"status": 404,
"detail": "Gebouweenheid is niet gevonden in het systeem.",
"instance": "9f32f093-e5e8-40e0-89ca-fdaaf5635dae"
} |
422 Unprocessable Content
Code Block | ||
---|---|---|
| ||
{
"title": "Unprocessable content",
"status": 422,
"detail": "Het zoekresultaat moet minder dan 1000 entries bevatten, verfijn je zoekopdracht.",
"instance": "9f32f093-e5e8-40e0-89ca-fdaaf5635dae"
} |
...