This is the API powering Omnia 2.0 and Pricemonitor, containing operations which can also be used directly by customers from their own systems.
This is the API powering Omnia 2.0 and Pricemonitor, containing operations which can also be used directly by customers from their own systems.
The Omnia 2.0 API is RESTful and provides access to the backend of Omnia 2.0 and Pricemonitor. It is used to manage products, offers, contracts and more.
Orders to be added
Orders in bulk
Unique id of an order. It must mean unique in the shop, not in the pricemonitor.
List of bought items
ID of the item in the customer's system. It is expected to be the customerProductId. It should be guaranteed that the itemId can be always assigned to only one product or variant.
Gross unit price of a single item, including applicable taxes.
curl -i -X POST \
-u <username>:<password> \
https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/orders \
-H 'Content-Type: application/json' \
-d '{
"orders": [
{
"shippingCosts": 0,
"orderId": "string",
"items": [
{
"itemId": "string",
"unitPrice": 0,
"quantity": 0,
"taxPercentage": 0
}
],
"totalPrice": 0,
"productMappings": [
{
"source": "string",
"target": "string"
}
],
"origin": "string",
"creationDate": "2019-08-24T14:15:22Z",
"currency": "string",
"referrer": "string"
}
],
"version": "string"
}'
{ "data": [ { … } ] }
curl -i -X DELETE \
-u <username>:<password> \
https://api-docs.omniaretail.dev/_mock/api/omnia/api/v3/vendor/contracts/qbcxvb/orders
{ "data": { "deleted": 0 } }
Saves orders in bulk. If an orderId was already used by this contract this order and all it's order-items will be overwritten.
version
of the request body must be "3"orderId
orders.items.itemId
fields should correspond to a customerProductId
of a product definition inside the contractList of orders
Shipping costs of the order. This amount is included in totalPrice.
List of purchased items.
ID of the item in the customer's system. It is expected to be the customerProductId. It should be guaranteed that the itemId can be always assigned to only one product or variant.
Gross unit price of a single item, including applicable taxes.
Total price of the order, including all items, applicable taxes, and shipping costs.
Timestamp in ISO 8601 format indicating when the order is placed.
Currency used in the order, represented by ISO 4217 Currency Codes (e.g., EUR).
curl -i -X PUT \
-u <username>:<password> \
https://api-docs.omniaretail.dev/_mock/api/omnia/api/v3/vendor/contracts/qbcxvb/orders \
-H 'Content-Type: application/json' \
-d '{
"orders": [
{
"shippingCosts": 5.9,
"orderId": "2023-11_customer-a_001",
"items": [
{
"unitPrice": 6.02,
"itemId": "itemId",
"quantity": 1,
"taxPercentage": 19
}
],
"totalPrice": 11.92,
"origin": "Amazon.de",
"creationDate": "2023-11-23T11:20:21.034+01:00",
"currency": "EUR"
}
],
"version": "3"
}'
{ "data": { "ids": [ … ] } }
Timestamp of start of time range for fetching orders. Formatted as ISO 8601 format with timezone with reference to UTC (e.g. for [Europe/Berlin] in winter time: 2023-11-01T14:50:45.495+01:00. In summer time: 2023-11-01T14:50:45.495+02:00). If this value is omitted then no lower time limit is considered.
Timestamp of end of time range for fetching orders. Formatted as ISO 8601 format with timezone with reference to UTC (e.g. for [Europe/Berlin] in winter time: 2023-11-01T14:50:45.495+01:00. In summer time: 2023-11-01T14:50:45.495+02:00). If this value is omitted then no upper time limit is considered.
curl -i -X GET \
-u <username>:<password> \
'https://api-docs.omniaretail.dev/_mock/api/omnia/api/v3/vendor/contracts/qbcxvb/orders?endDate=2019-08-24T14%3A15%3A22Z&limit=0&start=0&startDate=2019-08-24T14%3A15%3A22Z'
{}
The request body may include an optional products query. If omitted, all products are queried. Currently, product queries can be performed on two attributes:
Pagination is supported with a maximum limit of 10,000. For optimized performance:
Pagination operates based on the provided products query. For chunked requests over a set of ids, it's straightforward to specify up to 10,000 customerProductId's in the query with pagination set at start: 0, limit: 10,000.
The allowed query pattern is structured as follows:
{
"pagination": {
"start": ${start},
"limit": ${limit}
},
"range": {
"start": ${start},
"end": ${end}
},
"filter": {
"oneOf": {
"field": "customerProductId",
"values": [${customerProductIds as a list of strings}]
}
}
}
Specifies the pagination details such as the start index and the number of records to fetch (limit). At maximum it's allowed to query 10,000 records.
Defines the time range for which order statistics are queried. Note: The maximum time span between the start and end should not exceed 30 days.
The starting point of the time range, represented as a timestamp in ISO 8601 format (e.g., "2023-10-19T13:45:30Z") in UTC.
curl -i -X POST \
-u <username>:<password> \
https://api-docs.omniaretail.dev/_mock/api/omnia/api/v3/vendor/contracts/qbcxvb/orders/stats/query \
-H 'Content-Type: application/json' \
-d '{
"pagination": {
"start": 0,
"limit": 10
},
"range": {
"start": "2023-11-01T08:00:00Z",
"end": "2023-11-15T08:00:00Z"
},
"filter": {
"oneOf": {
"field": "customerProductId",
"values": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10"
]
}
}
}'
{ "data": [ { … } ] }
The request body should contain a list of order queries. Each query should contain an order id and creation date.
The allowed query pattern is structured as follows:
{
"orders": [
{
"orderId": ${orderId},
"creationDate": ${creationDate}
}
]
}
List of order queries, each query should include an order id and its corresponding creation date
curl -i -X POST \
-u <username>:<password> \
https://api-docs.omniaretail.dev/_mock/api/omnia/api/v3/vendor/contracts/qbcxvb/orders/delete/query \
-H 'Content-Type: application/json' \
-d '{
"orders": [
{
"orderId": "123",
"creationDate": "2023-11-01T08:00:00Z"
}
]
}'
{ "data": { "deleted": 0 } }