Reconcile bank payments to 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/bank-transaction/reconcile
application/json

Body

  • provider_statement_uuid string(uuid)

    The UUID of the provider statement. Required if you do not provide statement_transactions.

  • statement_transactions array[string(uuid)]

    The list of statement transactions to reconcile against expectations. Required if provider_statement_uuid is not present.

  • bank_transactions array[string(uuid)] Required

    The list of bank payments to reconcile against statement transactions.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/bank-transaction/reconcile
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/bank-transaction/reconcile' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"provider_statement_uuid":"0b4da415-f65e-4308-8d00-c98aeba43095","statement_transactions":["e883940f-c3a3-406c-b8f7-801caeefb508","6700d8dc-6471-404e-b6d4-09af2c69f25b","2da7e178-76ef-4aac-92cc-0d3af441871d"],"bank_transactions":["6f9a2beb-f795-43f5-8a87-8316fea42cc3","fc45b58a-416f-435d-8c98-62aa7c66466c","59645255-f5cd-46ee-81e8-e2cbfd6a40d4"]}'
Request examples
{
  "provider_statement_uuid": "0b4da415-f65e-4308-8d00-c98aeba43095",
  "statement_transactions": [
    "e883940f-c3a3-406c-b8f7-801caeefb508",
    "6700d8dc-6471-404e-b6d4-09af2c69f25b",
    "2da7e178-76ef-4aac-92cc-0d3af441871d"
  ],
  "bank_transactions": [
    "6f9a2beb-f795-43f5-8a87-8316fea42cc3",
    "fc45b58a-416f-435d-8c98-62aa7c66466c",
    "59645255-f5cd-46ee-81e8-e2cbfd6a40d4"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}