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 \
 --request POST 'https://api.plannrcrm.com/api/v1/bank-transaction/reconcile' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"provider_statement_uuid":"d3cb1db1-6a6e-46ff-88e9-df0a50c9b426","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": "d3cb1db1-6a6e-46ff-88e9-df0a50c9b426",
  "statement_transactions": [
    null,
    null
  ],
  "bank_transactions": [
    null,
    null
  ]
}