changes.mady.by.user Marko Milojevic
Saved on Mar 13, 2024
Saved on Mar 18, 2024
...
HTTP Request without profession filter
# HTTP POST # https://app.dev.thinksurance.de/api/products # 'Content-Type': 'application/json' # 'Accept': 'application/json' { "token": "some long string value" }
HTTP Request with profession filter
# HTTP POST # https://app.dev.thinksurance.de/api/products # 'Content-Type': 'application/json' # 'Accept': 'application/json' { "token": "some long string value", "professionId": 123 }
Successful HTTP Response
# HTTP 200 status code # 'Content-Type': 'application/json' [ { "id": 1, "name": "Product1" }, { "id": 2, "name": "Product2" } ]
Failed HTTP Response
# HTTP 200 status code # 'Content-Type': 'application/json' { "error": "API User is not existing or deactivated." }