POST /api/v1/statement-transaction/auto-reconcile

Run statement transactions through the auto reconciliation to expectations action again.

Headers

  • X-PLANNR-ACCOUNT-UUID string
application/json

Body

  • statement_transaction_uuids array[string(uuid)] Required

    Statement transaction UUIDs to auto reconcile to expectations.

  • provider_statement_uuids array[string(uuid)] Required

    Provider statement UUIDs to auto reconcile to expectations.

Responses

  • 204 application/json
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":["fa37c2ef-094d-435d-9323-ea1a6f340238","a6feb4fb-3a83-44e0-9e13-07dde042e25c","4361d833-daf6-4b5e-9ac5-459ac0230cb1"],"provider_statement_uuids":["00b56631-6425-4b92-9f26-e5166397884a","6f058a6e-da1f-4cf8-90ec-fee8d38b9213","791a1b92-9be2-4040-8a33-83c6edf01c5e"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "fa37c2ef-094d-435d-9323-ea1a6f340238",
    "a6feb4fb-3a83-44e0-9e13-07dde042e25c",
    "4361d833-daf6-4b5e-9ac5-459ac0230cb1"
  ],
  "provider_statement_uuids": [
    "00b56631-6425-4b92-9f26-e5166397884a",
    "6f058a6e-da1f-4cf8-90ec-fee8d38b9213",
    "791a1b92-9be2-4040-8a33-83c6edf01c5e"
  ]
}
Response examples (204)