GET
/
v0
/
reconciliations
/
{reconciliation_id}
Fetch a Reconciliation
curl --request GET \
  --url https://api.sandbox.teal.dev/v0/reconciliations/{reconciliation_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'teal-instance-id: <teal-instance-id>'
{
  "id": "FYQxHfWNCMnUuXr6iQhjgG",
  "ledger_id": "WTjdK47SHxokWUdypL8zyB",
  "start_datetime": "2024-01-01T00:00:00Z",
  "end_datetime": "2024-01-01T00:00:00Z",
  "reconciled_balance": 132629.38,
  "statement_starting_balance": 122629.38,
  "statement_ending_balance": 132629.38,
  "reconciliation_status": "unreconciled",
  "progress_status": "in_progress",
  "completed_on_datetime": "2024-01-01T00:00:00Z"
}

Authorizations

Authorization
string
header
required

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

Headers

teal-instance-id
string
required

The Teal instance ID

Path Parameters

reconciliation_id
string
required

The reconciliation ID

Response

Successful Response

id
string
required

The Reconciliation ID.

Examples:

"FYQxHfWNCMnUuXr6iQhjgG"

start_datetime
string<date-time>
required

The start datetime of the Reconciliation.

Examples:

"2024-01-01T00:00:00Z"

end_datetime
string<date-time>
required

The end datetime of the Reconciliation.

Examples:

"2024-01-01T00:00:00Z"

reconciled_balance
number
required

The balance of all reconciled journal entries in the ledger with a datetime before the end datetime. Excludes journal entries that were skipped to be reconciled in a later reconciliation after the end datetime.

Examples:

132629.38

statement_ending_balance
number
required

The ending balance of the statement used to perform the Reconciliation.

Examples:

132629.38

reconciliation_status
enum<string>
required

The status of the Reconciliation.

Available options:
reconciled,
unreconciled
progress_status
string
required

The progress of the Reconciliation.

Examples:

"in_progress"

"completed"

ledger_id
string | null

The Ledger ID

Examples:

"WTjdK47SHxokWUdypL8zyB"

statement_starting_balance
number | null

The starting balance of the statement. Equal to the statement_ending_balance of the previous reconciliation or the opening balance of the ledger

Examples:

122629.38

completed_on_datetime
string<date-time> | null

The datetime when the Reconciliation was last changed to completed.

Examples:

"2024-01-01T00:00:00Z"