POST /api/v1/statement-transaction/auto-reconcile

Run statement transactions through the auto reconciliation to expectations action again.

Headers

  • X-PLANNR-ACCOUNT-UUID string
application/json

Body

  • statement_transaction_uuids array[string(uuid)] Required

    Statement transaction UUIDs to auto reconcile to expectations.

  • provider_statement_uuids array[string(uuid)] Required

    Provider statement UUIDs to auto reconcile to expectations.

Responses

  • 204 application/json
POST /api/v1/statement-transaction/auto-reconcile
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/statement-transaction/auto-reconcile' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"statement_transaction_uuids":["87414305-2fd9-4348-ab0c-09efcfde89ac","e39dde74-22ec-44d7-b69d-9ca3fb9e3371","301806ff-1681-4a36-b07d-61afcaa525ac"],"provider_statement_uuids":["d4e717ab-f492-4ac8-a84d-1904d9c9e487","1ac120e3-caab-429f-bf25-45b876c78a05","9aec277d-a84e-434f-8272-72d8c6f2c07e"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "87414305-2fd9-4348-ab0c-09efcfde89ac",
    "e39dde74-22ec-44d7-b69d-9ca3fb9e3371",
    "301806ff-1681-4a36-b07d-61afcaa525ac"
  ],
  "provider_statement_uuids": [
    "d4e717ab-f492-4ac8-a84d-1904d9c9e487",
    "1ac120e3-caab-429f-bf25-45b876c78a05",
    "9aec277d-a84e-434f-8272-72d8c6f2c07e"
  ]
}
Response examples (204)
{}