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":["ba879699-e92c-4cd8-9ad9-e0f43d0483cf","3a7ed027-089d-40da-a478-e4bf78695b3a","4d8e59d5-4e39-4e9d-a14d-7c8fdb8e69df"],"provider_statement_uuids":["136b853d-0f86-4b2d-a7da-32acf651378b","fcc1e1f4-6676-4d6d-b59b-c58ef2a80b2c","e5eea345-fde7-4f4b-a530-c2ba2814e8c6"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "ba879699-e92c-4cd8-9ad9-e0f43d0483cf",
    "3a7ed027-089d-40da-a478-e4bf78695b3a",
    "4d8e59d5-4e39-4e9d-a14d-7c8fdb8e69df"
  ],
  "provider_statement_uuids": [
    "136b853d-0f86-4b2d-a7da-32acf651378b",
    "fcc1e1f4-6676-4d6d-b59b-c58ef2a80b2c",
    "e5eea345-fde7-4f4b-a530-c2ba2814e8c6"
  ]
}
Response examples (204)
{}