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":["87980cdc-5c01-492f-87a9-867c9ea5770c","d8492484-bf76-424d-a606-71d32cfedc8a","64fe1772-b3f3-43d6-ac9c-9faae40ea5cd"],"provider_statement_uuids":["061aff86-0bfb-4750-acea-6d1b6f768965","ef5ef4fc-756b-4c78-a5c9-5042b24973f0","0ba5e6c6-8cf4-4cbf-8a02-aba27f211760"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transaction_uuids": [
"87980cdc-5c01-492f-87a9-867c9ea5770c",
"d8492484-bf76-424d-a606-71d32cfedc8a",
"64fe1772-b3f3-43d6-ac9c-9faae40ea5cd"
],
"provider_statement_uuids": [
"061aff86-0bfb-4750-acea-6d1b6f768965",
"ef5ef4fc-756b-4c78-a5c9-5042b24973f0",
"0ba5e6c6-8cf4-4cbf-8a02-aba27f211760"
]
}
Response examples (204)
{}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}