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":["859260e9-553d-46c9-8a3d-78f9a0f350ee","7c724ae6-e9f5-496f-ab41-52a98920279a","b7bafecb-2b6c-4c93-93aa-a9a7e0051fa8"],"provider_statement_uuids":["45a0f205-06ff-4028-aee7-d6316b487ccd","e26fd714-712e-4a2f-be95-eef32bbe4f92","27971a29-3cb2-4240-866f-9c2dfc58dd8a"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "859260e9-553d-46c9-8a3d-78f9a0f350ee",
    "7c724ae6-e9f5-496f-ab41-52a98920279a",
    "b7bafecb-2b6c-4c93-93aa-a9a7e0051fa8"
  ],
  "provider_statement_uuids": [
    "45a0f205-06ff-4028-aee7-d6316b487ccd",
    "e26fd714-712e-4a2f-be95-eef32bbe4f92",
    "27971a29-3cb2-4240-866f-9c2dfc58dd8a"
  ]
}
Response examples (204)
{}