Auto reconcile statement transactions Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "PlannrCRM MCP server": {
    "url": "https://apidocs.plannrcrm.com/mcp"
  }
}

Close
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
  • 422 application/json

    Validation error

    Hide response attributes Show response attributes object
    • message string Required

      A human-readable description of the error.

    • errors object

      Validation messages keyed by the field that failed.

      Hide errors attribute Show errors attribute object
      • * array[string] Additional properties
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":["87980cdc-5c01-492f-87a9-867c9ea5770c","d8492484-bf76-424d-a606-71d32cfedc8a","64fe1772-b3f3-43d6-ac9c-9faae40ea5cd"],"provider_statement_uuids":["061aff86-0bfb-4750-acea-6d1b6f768965","ef5ef4fc-756b-4c78-a5c9-5042b24973f0","0ba5e6c6-8cf4-4cbf-8a02-aba27f211760"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "statement_transaction_uuids": [
    "87980cdc-5c01-492f-87a9-867c9ea5770c",
    "d8492484-bf76-424d-a606-71d32cfedc8a",
    "64fe1772-b3f3-43d6-ac9c-9faae40ea5cd"
  ],
  "provider_statement_uuids": [
    "061aff86-0bfb-4750-acea-6d1b6f768965",
    "ef5ef4fc-756b-4c78-a5c9-5042b24973f0",
    "0ba5e6c6-8cf4-4cbf-8a02-aba27f211760"
  ]
}
Response examples (204)
{}
Response examples (422)
{
  "message": "The given data was invalid.",
  "errors": {
    "field": [
      "The field is invalid."
    ]
  }
}