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.
-
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":"49594d1a-6865-4c19-ba52-5d8f1f515a2a","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": "49594d1a-6865-4c19-ba52-5d8f1f515a2a",
"statement_transactions": [
null,
null
],
"bank_transactions": [
null,
null
]
}