Get all bank accounts 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
GET /api/v2/bank-accounts

This endpoint will return all bank accounts in the firm relevant to the user accessing them.

Headers

  • X-PLANNR-ACCOUNT-UUID string

Query parameters

  • include string

    Comma separated list of relationships to include in the response. Valid relationships are [accounts].

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • filter[account_uuids] string

    Filter by a comma separated list of account UUIDs.

  • filter[circle_uuids] string

    Filter by a comma separated list of circle UUIDs.

  • filter[account_name] string

    Filter by name.

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at, account_name]. Negative sign to denote DESC. Defaults to 'created_at'.

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string

        The UUID of the resource.

      • created_at string

        The timestamp of when the resource was created.

      • updated_at string

        The timestamp of when the resource was updated.

      • account_name string

        The name of the bank account

      • account_holders string

        The name of the bank account holder(s) as it appears on statements

      • account_number string

        The bank account number

      • sort_code string

        The bank account sort code

      • accounts object

        The accounts linked to this bank account

        Hide accounts attributes Show accounts attributes object
        • uuid string
        • created_at string
        • updated_at string
        • type string
        • role string
        • first_name string
        • last_name string
        • name string
        • email string
        • photo_url string
        • external_references string
GET /api/v2/bank-accounts
curl \
 --request GET 'https://api.plannrcrm.com/api/v2/bank-accounts' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "uuid": "f1f882d7-c2a9-4560-b679-c91b4869a931",
      "created_at": "2026-06-08T16:08:04+01:00",
      "updated_at": "2026-06-08T16:08:04+01:00",
      "account_name": "Savings Account",
      "account_holders": "Mr John A Smith",
      "account_number": "12345678",
      "sort_code": "123456",
      "accounts": {
        "uuid": "d08a9ee8-2fce-4cb2-85ea-314166dfdc02",
        "created_at": "2026-06-08T16:08:04+01:00",
        "updated_at": "2026-06-08T16:08:04+01:00",
        "type": "client",
        "role": "client",
        "first_name": "Gareth",
        "last_name": "Thompson",
        "name": "Gareth Thompson",
        "email": "gareth@codepotato.co.uk",
        "photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
        "external_references": "App\\Http\\Resources\\ExternalReferenceResource"
      }
    }
  ]
}