Auto reconcile statement transactions
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":[null,null],"provider_statement_uuids":[null,null]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transaction_uuids": [
null,
null
],
"provider_statement_uuids": [
null,
null
]
}