Reconcile bank payments to statement transactions
Headers
-
Content-Type string
-
Accept string
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.
-
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":"c5adb714-23f4-4e7e-b4fb-0d8ff4824bd4","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": "c5adb714-23f4-4e7e-b4fb-0d8ff4824bd4",
"statement_transactions": [
null,
null
],
"bank_transactions": [
null,
null
]
}