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

Callbacks

You can register HTTP(S) callbacks in Omnia 2.0, which function as webhooks. Callbacks are triggered at the contract level when specific events occur within the system.

Please note that multiple parties can register callbacks, so when modifying callbacks, you must ensure that you do not overwrite or delete callbacks registered by other parties. We strongly recommend including a unique name for each callback to help you identify them later.

Callbacks are executed asynchronously as tasks within our system. To monitor the execution of these callbacks, you can track the corresponding tasks with the task type backend.tasks.pricemonitor.callback.

For added security, you can register a token with your callback and/or whitelist our IP range to ensure secure communication.

Set domains for contract

Request

Path
contractIdstringrequired

ID of the contract

Example: qbcxvb
Bodyapplication/jsonrequired

Settings

Array [
string
]
curl -i -X PUT \
  -u <username>:<password> \
  https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/settings/domains \
  -H 'Content-Type: application/json' \
  -d '[
    "string"
  ]'

Responses

The domains setting for this contract was saved.

Get callbacks

Request

Retrieve all callbacks for the given contract.

Path
contractIdstringrequired

ID of the contract

Example: qbcxvb
curl -i -X GET \
  -u <username>:<password> \
  https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/settings/callbacks

Responses

Returns a list of all configured callbacks for certain events. These callbacks are executed once the respective event has been successfully completed.

Bodyapplication/json
pricemonitorCompletedArray of objects(com.patagona.pricemonitor.share.api.Callback)required

A list of callbacks that are triggered when the "Pricemonitor Completed" event occurs, which means:
1. A monitoring task (fetching offers) has successfully finished, and/or
2. The price recommendation calculation task has been completed.

pricemonitorCompleted[].​methodstring

The HTTP method to use when making the request. Supported methods are GET and POST. If not provided, the default method is GET.

pricemonitorCompleted[].​namestring

An optional name for the callback, used for identification purposes.

pricemonitorCompleted[].​bodyTemplatestring

An optional Mustache template to define the body of the request.
The following placeholders are available in the template:
- startTime: The time when the monitoring task started (in ISO 8601 format).
- contractId: The unique identifier of the contract.
Example default template: {"startTime":"{{startTime}}"}.

pricemonitorCompleted[].​urlstringrequired

The URL to which the callback request will be sent.

pricemonitorCompleted[].​headersobjectrequired

A map of HTTP headers to be included in the request.

pricemonitorCompleted[].​headers.​property name*stringadditional property
Response
application/json
{ "pricemonitorCompleted": [ {} ] }

Update callbacks

Request

Create or update callbacks for the given contract. This is used to upsert (insert or update) all callbacks at once. Keep in mind that callbacks can be used by multiple parties (Omnia internal, Omnia Plugins, Users). It's strongly recommended to provide your callbacks with a unique name to easily identify them later. To update a single callback, you must also provide all other callbacks to ensure no callbacks from other parties are lost. To delete all callbacks, you can provide an empty list.

Path
contractIdstringrequired

ID of the contract

Example: qbcxvb
Bodyapplication/json

The request body should contain a list of callbacks to be stored.

pricemonitorCompletedArray of objects(com.patagona.pricemonitor.share.api.Callback)required

A list of callbacks that are triggered when the "Pricemonitor Completed" event occurs, which means:
1. A monitoring task (fetching offers) has successfully finished, and/or
2. The price recommendation calculation task has been completed.

pricemonitorCompleted[].​methodstring

The HTTP method to use when making the request. Supported methods are GET and POST. If not provided, the default method is GET.

pricemonitorCompleted[].​namestring

An optional name for the callback, used for identification purposes.

pricemonitorCompleted[].​bodyTemplatestring

An optional Mustache template to define the body of the request.
The following placeholders are available in the template:
- startTime: The time when the monitoring task started (in ISO 8601 format).
- contractId: The unique identifier of the contract.
Example default template: {"startTime":"{{startTime}}"}.

pricemonitorCompleted[].​urlstringrequired

The URL to which the callback request will be sent.

pricemonitorCompleted[].​headersobjectrequired

A map of HTTP headers to be included in the request.

pricemonitorCompleted[].​headers.​property name*stringadditional property
curl -i -X PUT \
  -u <username>:<password> \
  https://api-docs.omniaretail.dev/_mock/api/omnia/api/2/v/contracts/qbcxvb/settings/callbacks \
  -H 'Content-Type: application/json' \
  -d '{
    "pricemonitorCompleted": [
      {
        "method": "string",
        "name": "string",
        "bodyTemplate": "string",
        "url": "string",
        "headers": {
          "property1": "string",
          "property2": "string"
        }
      }
    ]
  }'

Responses

Returns the callbacks that have been successfully stored.

Bodyapplication/json
pricemonitorCompletedArray of objects(com.patagona.pricemonitor.share.api.Callback)required

A list of callbacks that are triggered when the "Pricemonitor Completed" event occurs, which means:
1. A monitoring task (fetching offers) has successfully finished, and/or
2. The price recommendation calculation task has been completed.

pricemonitorCompleted[].​methodstring

The HTTP method to use when making the request. Supported methods are GET and POST. If not provided, the default method is GET.

pricemonitorCompleted[].​namestring

An optional name for the callback, used for identification purposes.

pricemonitorCompleted[].​bodyTemplatestring

An optional Mustache template to define the body of the request.
The following placeholders are available in the template:
- startTime: The time when the monitoring task started (in ISO 8601 format).
- contractId: The unique identifier of the contract.
Example default template: {"startTime":"{{startTime}}"}.

pricemonitorCompleted[].​urlstringrequired

The URL to which the callback request will be sent.

pricemonitorCompleted[].​headersobjectrequired

A map of HTTP headers to be included in the request.

pricemonitorCompleted[].​headers.​property name*stringadditional property
Response
application/json
{ "pricemonitorCompleted": [ {} ] }

Tasks Management

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

Operations

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