Auto reconcile statement transactions
Run statement transactions through the auto reconciliation to expectations action again.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
Statement transaction UUIDs to auto reconcile to expectations.
-
Provider statement UUIDs to auto reconcile to expectations.
POST /api/v1/statement-transaction/auto-reconcile
curl \
-X POST https://api.plannrcrm.com/api/v1/statement-transaction/auto-reconcile \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"statement_transaction_uuids":[null,null],"provider_statement_uuids":[null,null]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"statement_transaction_uuids": [
null,
null
],
"provider_statement_uuids": [
null,
null
]
}