Auto reconcile statement transactions Run in API Explorer
Ask AI
Run statement transactions through the auto reconciliation to expectations action again.
POST
/api/v1/statement-transaction/auto-reconcile
curl \
--request POST 'https://api.plannrcrm.com/api/v1/statement-transaction/auto-reconcile' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{
"statement_transaction_uuids": [
"bb10fa0f-f198-440c-8d05-0fe211cac4e5",
"ca454d40-680f-4389-84cf-a6e03275a29b",
"49e2021e-3036-412e-a238-b624930840f2"
],
"provider_statement_uuids": [
"ee54d9cf-024d-4dd4-b22c-845026391445",
"e6c63665-6eb3-4158-9207-6edc64535eea",
"c2c582b6-be4f-4b57-a8c3-75d1b185ef10"
]
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transaction_uuids": [
"bb10fa0f-f198-440c-8d05-0fe211cac4e5",
"ca454d40-680f-4389-84cf-a6e03275a29b",
"49e2021e-3036-412e-a238-b624930840f2"
],
"provider_statement_uuids": [
"ee54d9cf-024d-4dd4-b22c-845026391445",
"e6c63665-6eb3-4158-9207-6edc64535eea",
"c2c582b6-be4f-4b57-a8c3-75d1b185ef10"
]
}
Response examples (204)
{}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}