Here are the details how to return all registered operations for a given timeframe.

Integration and details

GET https://[host]:[port]/api/integration-services/v1/operations-reconciliation?registeredFrom={registeredFromDate}&registeredTill={registeredTillDate}

Request

registeredFrom
date
required

Timestamp Format: ISO 8601 yyyy-MM-dd’T’HH:mm:ss.SSSX.

Example: 2024-08-16T13:00:00.605Z

registeredTill
date

Timestamp Format: ISO 8601 yyyy-MM-dd’T’HH:mm:ss.SSSX.

Example: 2024-08-20T13:00:00.605Z

Response

Two options for responses - either operations[] or errors[].

Operation

ExtId
string

External identifier of operation.

businessUnit
string

Business unit to which operation belongs to.

Response example

{
  "operations": [
    {
      "extId": "testingqwe",
      "businessUnit": "businessUnit1"
    },
    {
      "extId": "testingqweqwe",
      "businessUnit": "businessUnit2"
    }
  ]
}

Error Message

code
string

Error code.

description
string

Error description.

Response example

{
  "errors": [
    {
      "code": "BAD_REQUEST",
      "description": "RegisteredFrom must be before registeredTill"
    }
  ]
}