Omnia 2.0 API (0.0.7097)

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.

Download OpenAPI description
Languages
Servers
Mock server
https://api-docs.omniaretail.dev/_mock/api/omnia/
Production API
https://api.patagona.de/

Overview

Overview, explanation and pointers to the API documentation.

Products Management

Operations to manage your products.

Operations

Price Recommendations

Operations to get price recommendations calculated by our system.

Operations

Offers

Operations to get and manage offers.

Operations

Feeds Management

Manage your data-feeds.

Operations

Logs Management

Operations to store log messages in our system.

You could integrate this API in your own system and publish the integration logs to our system so that Omnia Retail could analyze them.

Operations

Company Management

Company management related endpoints.

Operations

Orders Management

Manage your orders.

Operations

Settings Management

Operations to manage the settings of contracts. Only a limited number of these operations are available to customers directly.

Operations

Tasks Management

Operations to view and manage the tasks running in the platform. Customers can only view tasks.

Operations

What tasks are

Tasks are asynchronously handled jobs in our system, like price calculation or monitoring jobs.

Price calculation tasks

A use case for the find tasks operation is to get the most recent completed price calculation task to see if it was successful or failed. And if it failed, what the failures were.

Finding most recent price calculation tasks

If you want to find the most recent completed price calculation task you need the following query parameters:

limit=1
includeFailures=true
taskTypeFilter=backend.tasks.pricemonitor.offers.preprocessing
taskState=succeeded,failed    // this only returns completed tasks. Currently running tasks are ignored

Optional: You might want to adjust the queried timerange and specify minCreationDate and maxCreationDate. By default all tasks ever are queried.

It can happen that there no price calculation has been run yet, then an empty list of tasks is returned.

Apart from that these are the possible task states:

Task stateDescription
succeededAt least for one product a price calculation has been calculated
failedEither all price calculations for every product failed OR the whole price calculation process failed due to an unexpected error

If there are price calculation failures on a product level, you find the dedicated failures in the failures array of the task. Be aware: at most 1000 failures are returned.

If you want to have statistics for how many products a price has been calculated and how many price calculations failed on product level, then please take a look at the result.operations.<successful/failed/total> fields in the response.

When a task completely fails then the response also provides a failureCode that is of interest.

Example Responses

Successful task

Click to expand
{
  "state":"succeeded",
  "data":{
    "startTimestamp":"2023-05-08T14:40:00.213Z"
  },
  "result":{
    "operations":{
      "successful":28444,
      "failed":0,
      "total":28444
    }
  },
  "contractId":"gj8qu6",
  "failures":[

  ],
  "creationDate":"2023-05-08T15:41:46.545Z",
  "taskType":"backend.tasks.pricemonitor.offers.preprocessing",
  "finishDate":"2023-05-08T15:44:58.853Z",
  "userId":2156,
  "startDate":"2023-05-08T15:41:46.555Z",
  "taskId":"gj8qu6:1e318eee-3217-4ee7-a380-c6312935dcd1"
}

Find tasks for contract [vendor]

Request

The search can be narrowed down by providing the IDs of the tasks, separated by comma

Path
contractIdstringrequired

ID of the contract

Example: qbcxvb
Query
taskIdsFilterstring

Ids of the tasks

taskTypeFilterstring

Desired task type

limitinteger(int32)

Maximal number of results

Default 100
Example: limit=10
includeFailuresboolean

Flag whether to include failures in the response

Default true
taskStatestring

Comma separated task state filter

minCreationDatestring(date-time)

Oldest returned creation date in UTC

maxCreationDatestring(date-time)

Newest returned creation date in UTC

curl -i -X GET \
  -u <username>:<password> \
  'https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/tasks?includeFailures=true&limit=10&maxCreationDate=2019-08-24T14%3A15%3A22Z&minCreationDate=2019-08-24T14%3A15%3A22Z&taskIdsFilter=string&taskState=string&taskTypeFilter=string'

Responses

No response was specified

Bodyapplication/jsonArray [
contractIdstring
creationDatestring(date-time)
dataArray of strings
failuresArray of objects
finishDatestring(date-time)
parentIdstring
startDatestring(date-time)
statestring
taskIdstring
taskTypestring
]
Response
application/json
[ { "contractId": "string", "creationDate": "2019-08-24T14:15:22Z", "data": [], "failures": [], "finishDate": "2019-08-24T14:15:22Z", "parentId": "string", "startDate": "2019-08-24T14:15:22Z", "state": "string", "taskId": "string", "taskType": "string" } ]

Get task

Request

Finds a task with the specified id for the given contract.

Path
contractIdstringrequired

ID of the contract

Example: qbcxvb
taskIdstringrequired

Id of the task

curl -i -X GET \
  -u <username>:<password> \
  'https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/tasks/{taskId}'

Responses

No response was specified

Bodyapplication/json
contractIdstring
creationDatestring(date-time)
dataArray of strings
failuresArray of objects
finishDatestring(date-time)
parentIdstring
startDatestring(date-time)
statestring
taskIdstring
taskTypestring
Response
application/json
{ "contractId": "string", "creationDate": "2019-08-24T14:15:22Z", "data": [ "string" ], "failures": [ {} ], "finishDate": "2019-08-24T14:15:22Z", "parentId": "string", "startDate": "2019-08-24T14:15:22Z", "state": "string", "taskId": "string", "taskType": "string" }

Strategies Management

Operations to view and manage the pricing strategies.

Operations

Domains

Operations to view all supported domains.

A domain is an external datasource or website that contains information about offers for products for sale. Information like product characteristics and sales characterics like price, stock level and delivery times and costs.

Operations

Plugin Registration

Operations to view registered plugins.

Operations