Skip to content

There are different options to retrieve information associated with an article. An article is always identified by a unique article number, called sku (stock keeping unit).

Article information

coming soon.

Article availability

INFO

For this to work your API-token must be associated with your customer id.

To retrieve information on the availability of a certain amount use the following API endpoint:

api/article/{sku}with the necessary Parameter: sku and amount

shell
curl -X 'GET' \
  'https://api02.reimo-shops.de/api/articles/availability/{sku}?amount=1' \
  -H 'accept: application/vnd.reimo.api+json;version=v1' \
  -H 'Authorization: Bearer YOUR_JWT'

The response body will contain the availability information in the following Schema:

json
{
  "sku": "string",
  "quantity_requested": 0,
  "availability": "string",
  "message": "string"
}

and the HTTP status will be 200

If your API token is not associated with a customer-id, the request fails with HTTP status 403

Further information on the possible HTTP status can be found here: Errors