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":["97755582-951f-4ea6-90f8-e49611f160ea","aef1fb13-3369-4681-9f7c-de17b4917968","608f7af5-1d6b-4071-b120-9e912b48b3de"],"provider_statement_uuids":["975fdc07-9b93-438c-b306-9635e9b49876","3fb1efa4-9bb2-463a-ba08-e979d224af84","99fe4619-f3bf-48f8-bebe-1df03710feb2"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "97755582-951f-4ea6-90f8-e49611f160ea",
    "aef1fb13-3369-4681-9f7c-de17b4917968",
    "608f7af5-1d6b-4071-b120-9e912b48b3de"
  ],
  "provider_statement_uuids": [
    "975fdc07-9b93-438c-b306-9635e9b49876",
    "3fb1efa4-9bb2-463a-ba08-e979d224af84",
    "99fe4619-f3bf-48f8-bebe-1df03710feb2"
  ]
}
Response examples (204)
{}