Skip to main content
POST
/
deliver
/
reports
/
recon
Create a reconciliation report
curl --request POST \
  --url https://api-sandbox.orum.io/deliver/reports/recon \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_time": "2023-07-13T00:00:00.000Z",
  "end_time": "2023-07-13T00:00:00.000Z",
  "report_scope": "total",
  "subledger_reference_id": "<string>"
}
'
{
  "report": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "start_time": "2023-07-13T00:00:00.000Z",
    "end_time": "2023-07-13T00:00:00.000Z",
    "status": "created",
    "report_scope": "total",
    "subledger_reference_id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.orum.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
start_time
string<date-time>
required

The start time of the report range in ISO-8601 format.

Example:

"2023-07-13T00:00:00.000Z"

end_time
string<date-time>
required

The end time of the report range in ISO-8601 format.

Example:

"2023-07-13T00:00:00.000Z"

report_scope
enum<string>
default:total

The scope of the report.

Available options:
total,
enterprise,
subledger
subledger_reference_id
string

Unique reference id for the subledger resource. Generated by you.

Required string length: 1 - 255

Response

200 response.

report
ReportResponseBase · object
required