Skip to main content

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={registeredFromTimestamp}&registeredTill={registeredTillTimestamp}

Request

registeredFrom
Timestamp RFC 3339 (ISO 8601)
required
Timestamp Format: ISO 8601 yyyy-MM-dd’T’HH:mm:ss.SSSX.Example: 2024-08-16T13:00:00.605Z
registeredTill
Timestamp RFC 3339 (ISO 8601)
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(255)
External identifier of operation.
businessUnit
string(255)
Business unit to which operation belongs to.

Response example

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

Error Message

code
string
Error code.
description
string
Error description.

Response example

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