GET
/
v0
/
reconciliations
List Reconciliations
curl --request GET \
  --url https://api.sandbox.teal.dev/v0/reconciliations \
  --header 'Authorization: Bearer <token>' \
  --header 'teal-instance-id: <teal-instance-id>'
{
  "next_page_token": "ikal0NEVfMhF8dJf4yQ6KQZmGD",
  "prev_page_token": "vuA7JeKI5c6FLnPt5JfRcZcJxW",
  "records": [
    {
      "id": "FYQxHfWNCMnUuXr6iQhjgG",
      "ledger_id": "WTjdK47SHxokWUdypL8zyB",
      "start_datetime": "2024-01-01T00:00:00Z",
      "end_datetime": "2024-01-01T00:00:00Z",
      "ledger_starting_balance": 122629.38,
      "ledger_ending_balance": 132629.38,
      "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

Query Parameters

sort
enum<string>[] | null

A comma separated list of sort orders for the results.

progress_status
enum<string> | null

Only return Reconciliations with a specific progress status.

Available options:
completed,
in_progress
ledger_id
string | null

The ledger ID.

limit
integer | null
default:50

The number of records to return. Max limit is 100.

Required range: 1 <= x < 101
page_token
string | null

Response

200
application/json

Successful Response

The response is of type object.