Storefront API Documentation.
Before you begin.
All responses provided below in the documentation are wrapped into a result and status code object. For example, if the documentation says that the response is:
1 2 3 4 5 6 7 | Media type: application/json Type: object Properties status: string (required) version: string (required) |
It means the real output will look like this:
1 2 3 4 5 6 7 | { "result": { "status": "ok", "version": "1.2.3" }, "code": 200 //deprecated } |
We advise you to use HTTP Status Codes since the current "code" element is deprecated and will be removed soon.