Get all Accounts for the Circle

GET /api/v1/circles/{circle_uuid}/accounts

Gets a list of accounts for the circle with related data

Query parameters

  • Filter by a comma separated list of account UUIDs.

  • sort string

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

Responses

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

      Additional properties are allowed.

GET /api/v1/circles/{circle_uuid}/accounts
curl \
 --request GET https://api.plannrcrm.com/api/v1/circles/circle_uuid/accounts \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "name": "Gareth Thompson",
      "uuid": "43c2a4a0-397b-4aa0-8ea8-2f37ca57138f",
      "email": "gareth@codepotato.co.uk",
      "logins": [
        {
          "firm": "App\\Http\\Resources\\FirmResource",
          "uuid": "fc22ed6e-4060-4af7-8c29-bbb103aadcad",
          "email": "gareth@plannrcrm.com",
          "account": "App\\Http\\Resources\\AccountResource",
          "primary": false,
          "last_name": "Thompson",
          "created_at": "2025-03-10T22:05:27+00:00",
          "expires_at": "2025-06-18T22:05:27+01:00",
          "first_name": "Gareth",
          "updated_at": "2025-03-10T22:05:27+00:00",
          "goals_enabled": true,
          "tasks_enabled": true,
          "wealth_enabled": true,
          "is_impersonated": false,
          "welcome_enabled": true,
          "factfind_enabled": true,
          "has_write_permission": false,
          "has_delete_permission": false,
          "receives_unread_notifications_email": true
        }
      ],
      "created_at": "2025-03-10T22:05:27+00:00",
      "updated_at": "2025-03-10T22:05:27+00:00",
      "linked_clients": [
        {
          "name": "Gareth",
          "uuid": "90d8e8f2-d071-484b-8294-51f7b47a173b",
          "relationship": "Father"
        }
      ]
    }
  ]
}