Reconcile bank payments to statement transactions Run in API Explorer
Ask AI
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": "89ecce40-1569-4a65-b2a0-66f0c75e8182",
"statement_transactions": [
"692058b9-fc9d-4064-8e80-d437cdaf35dc",
"af4f7186-441a-4c6e-9606-7b63f9002d67",
"8e6cee2d-8e30-4718-8cff-ca4c2d898d94"
],
"bank_transactions": [
"2e40e04e-aa6f-4dde-93eb-fd78f1f78587",
"1783a5d4-4fa1-49de-965b-b5bec53c1c59",
"6b62b0fb-09e1-477a-b619-b28593e907cc"
]
}'
Request examples
{
"provider_statement_uuid": "89ecce40-1569-4a65-b2a0-66f0c75e8182",
"statement_transactions": [
"692058b9-fc9d-4064-8e80-d437cdaf35dc",
"af4f7186-441a-4c6e-9606-7b63f9002d67",
"8e6cee2d-8e30-4718-8cff-ca4c2d898d94"
],
"bank_transactions": [
"2e40e04e-aa6f-4dde-93eb-fd78f1f78587",
"1783a5d4-4fa1-49de-965b-b5bec53c1c59",
"6b62b0fb-09e1-477a-b619-b28593e907cc"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}