Auto reconcile statement transactions

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 Required

  • statement_transaction_uuids array[string] Required

    Statement transaction UUIDs to auto reconcile to expectations.

  • provider_statement_uuids array[string] Required

    Provider statement UUIDs to auto reconcile to expectations.

Responses

  • 204
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
  ]
}