Returns the Catalog metadata as a JSON Schema document describing every resource (Category, Attribute Set, Product, Variant, Point of Sale) and the relationships between them. Use it to build requests against the rest of the API.
Requires a valid API key in the X-API-KEY header.
200 OK — A JSON schema document describing every resource in the Catalog (Category, Attribute Set, Product, Variant, Point of Sale) and the relationships between them. Use this document to build requests against the rest of the API.
- 401 Unauthorized — Missing or invalid API key. Returned by the API gateway as
{ "message": "Unauthorized", "request_id": "d8aafa5b8f3e400b60bea0123dd33317" }. - 404 Not Found — Tenant or model not found.
- 500 Internal Server Error — Unexpected technical error.
Request:
GET /$metadata HTTP/1.1
X-API-KEY: your-api-key-hereResponse:
HTTP/1.1 200 OK
Content-Type: application/jsonGET
curl -i -X GET \
'https://api2.saleslayer.com/catalog/$metadata' \
-H 'X-API-KEY: string'Response
{ "readLink": { "uri": "http://example.com" }, "value": null }