Reconcile bank payments to statement transactions

POST /api/v1/bank-transaction/reconcile

Headers

application/json

Body Required

  • The UUID of the provider statement. Required if you do not provide statement_transactions.

  • The list of statement transactions to reconcile against expectations. Required if provider_statement_uuid is not present.

  • bank_transactions array[string] Required

    The list of bank payments to reconcile against statement transactions.

POST /api/v1/bank-transaction/reconcile
curl \
 -X POST https://api.plannrcrm.com/api/v1/bank-transaction/reconcile \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"provider_statement_uuid":"00947030-2360-4faf-8689-6ca7f8c14d4f","statement_transactions":[null,null],"bank_transactions":[null,null]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "provider_statement_uuid": "00947030-2360-4faf-8689-6ca7f8c14d4f",
  "statement_transactions": [
    null,
    null
  ],
  "bank_transactions": [
    null,
    null
  ]
}