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 \
--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":"028156b2-055d-4455-a878-2368eacd70e9","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": "028156b2-055d-4455-a878-2368eacd70e9",
"statement_transactions": [
null,
null
],
"bank_transactions": [
null,
null
]
}