Reconcile bank payments to statement transactions

POST /api/v1/bank-transaction/reconcile
application/json

Body Required

  • provider_statement_uuid string

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

  • statement_transactions array[string]

    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.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/bank-transaction/reconcile
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/bank-transaction/reconcile' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"provider_statement_uuid":"d461dc27-3fc6-414f-a24a-43a5cef07885","statement_transactions":[null,null],"bank_transactions":[null,null]}'
Request examples
{
  "provider_statement_uuid": "d461dc27-3fc6-414f-a24a-43a5cef07885",
  "statement_transactions": [
    null,
    null
  ],
  "bank_transactions": [
    null,
    null
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}