List reconciliation exceptions
curl --request GET \
--url https://api.endclose.com/v1/reconciliation_exceptions \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.endclose.com/v1/reconciliation_exceptions"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.endclose.com/v1/reconciliation_exceptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.endclose.com/v1/reconciliation_exceptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.endclose.com/v1/reconciliation_exceptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.endclose.com/v1/reconciliation_exceptions")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.endclose.com/v1/reconciliation_exceptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"reconciliation_id": 123,
"data_stream_id": 123,
"title": "<string>",
"id": 123,
"reconciliation_name": "<string>",
"data_stream_name": "<string>",
"data_stream_key": "<string>",
"description": "<string>",
"status": "open",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"opened_at": "2023-11-07T05:31:56Z",
"closed_at": "2023-11-07T05:31:56Z",
"assignees": [
{
"id": 123,
"workos_user_id": "<string>"
}
],
"decimal_places": 2,
"aggregates": {
"record_count": 123,
"total_amount": 123,
"debit_count": 123,
"debit_sum": 123,
"credit_count": 123,
"credit_sum": 123,
"avg_age_days": 123,
"oldest_at": "2023-11-07T05:31:56Z",
"newest_at": "2023-11-07T05:31:56Z"
},
"filtered_aggregates": {
"record_count": 123,
"total_amount": 123,
"debit_count": 123,
"debit_sum": 123,
"credit_count": 123,
"credit_sum": 123,
"avg_age_days": 123,
"oldest_at": "2023-11-07T05:31:56Z",
"newest_at": "2023-11-07T05:31:56Z"
},
"comments": [
{
"id": 123,
"body": "<string>",
"author_workos_id": "<string>",
"mentions": [
123
],
"created_at": "2023-11-07T05:31:56Z"
}
],
"investigation": {
"id": 123,
"status": "<string>",
"recommendation_text": "<string>",
"confidence_score": 123,
"candidate_records_searched": 123,
"suggested_record_ids": [
123
],
"filter_params": {},
"completed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
},
"investigation_sessions": [
{
"id": 123,
"status": "<string>",
"recommendation_text": "<string>",
"confidence_score": 123,
"candidate_records_searched": 123,
"suggested_record_ids": [
123
],
"filter_params": {},
"completed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
],
"has_more": true,
"offset": 123
}Reconciliation Exceptions
List reconciliation exceptions
Returns a paginated list of exceptions, optionally filtered by reconciliation or status. Each row includes data-stream metadata and an aggregates summary so you can render a queue without a follow-up request per row.
GET
/
reconciliation_exceptions
List reconciliation exceptions
curl --request GET \
--url https://api.endclose.com/v1/reconciliation_exceptions \
--header 'X-API-KEY: <api-key>'import requests
url = "https://api.endclose.com/v1/reconciliation_exceptions"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://api.endclose.com/v1/reconciliation_exceptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.endclose.com/v1/reconciliation_exceptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.endclose.com/v1/reconciliation_exceptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.endclose.com/v1/reconciliation_exceptions")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.endclose.com/v1/reconciliation_exceptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"reconciliation_id": 123,
"data_stream_id": 123,
"title": "<string>",
"id": 123,
"reconciliation_name": "<string>",
"data_stream_name": "<string>",
"data_stream_key": "<string>",
"description": "<string>",
"status": "open",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"opened_at": "2023-11-07T05:31:56Z",
"closed_at": "2023-11-07T05:31:56Z",
"assignees": [
{
"id": 123,
"workos_user_id": "<string>"
}
],
"decimal_places": 2,
"aggregates": {
"record_count": 123,
"total_amount": 123,
"debit_count": 123,
"debit_sum": 123,
"credit_count": 123,
"credit_sum": 123,
"avg_age_days": 123,
"oldest_at": "2023-11-07T05:31:56Z",
"newest_at": "2023-11-07T05:31:56Z"
},
"filtered_aggregates": {
"record_count": 123,
"total_amount": 123,
"debit_count": 123,
"debit_sum": 123,
"credit_count": 123,
"credit_sum": 123,
"avg_age_days": 123,
"oldest_at": "2023-11-07T05:31:56Z",
"newest_at": "2023-11-07T05:31:56Z"
},
"comments": [
{
"id": 123,
"body": "<string>",
"author_workos_id": "<string>",
"mentions": [
123
],
"created_at": "2023-11-07T05:31:56Z"
}
],
"investigation": {
"id": 123,
"status": "<string>",
"recommendation_text": "<string>",
"confidence_score": 123,
"candidate_records_searched": 123,
"suggested_record_ids": [
123
],
"filter_params": {},
"completed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
},
"investigation_sessions": [
{
"id": 123,
"status": "<string>",
"recommendation_text": "<string>",
"confidence_score": 123,
"candidate_records_searched": 123,
"suggested_record_ids": [
123
],
"filter_params": {},
"completed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
],
"has_more": true,
"offset": 123
}Authorizations
Query Parameters
Filter by reconciliation
Filter by exception status
Available options:
open, investigating, dismissed, resolved Required range:
1 <= x <= 100Pagination offset
⌘I