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":["93d0142d-61a4-4442-abff-bf6574c56732","2d710146-5e97-44c1-9ce6-e30a2c7f2b13","a6e574a6-eb05-41b3-8f3d-38571aad64f7"],"provider_statement_uuids":["91e4f689-54fd-4e0a-9d05-cd3fba0fe129","ca4b5762-5e59-4cc9-ace3-0aa8952ca27f","7f75b32d-26ba-47a2-a9b4-656c3480f72b"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transaction_uuids": [
"93d0142d-61a4-4442-abff-bf6574c56732",
"2d710146-5e97-44c1-9ce6-e30a2c7f2b13",
"a6e574a6-eb05-41b3-8f3d-38571aad64f7"
],
"provider_statement_uuids": [
"91e4f689-54fd-4e0a-9d05-cd3fba0fe129",
"ca4b5762-5e59-4cc9-ace3-0aa8952ca27f",
"7f75b32d-26ba-47a2-a9b4-656c3480f72b"
]
}
Response examples (204)
{}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}