Get all Accounts for the Circle
Gets a list of accounts for the circle with related data
GET
/api/v1/circles/{circle_uuid}/accounts
curl \
--request GET 'https://api.plannrcrm.com/api/v1/circles/6ff8f7f6-1eb3-3525-be4a-3932c805afed/accounts' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Gareth Thompson",
"uuid": "8a5079d6-d40a-43b5-8e3d-518126d5481a",
"email": "gareth@codepotato.co.uk",
"logins": [
{
"firm": "App\\Http\\Resources\\FirmResource",
"uuid": "3664a753-d76b-4f75-a59c-e620dd52197a",
"email": "gareth@plannrcrm.com",
"account": "App\\Http\\Resources\\AccountResource",
"primary": false,
"last_name": "Thompson",
"created_at": "2025-10-24T10:34:17+01:00",
"expires_at": "2026-02-01T10:34:17+00:00",
"first_name": "Gareth",
"updated_at": "2025-10-24T10:34:17+01: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-10-24T10:34:17+01:00",
"updated_at": "2025-10-24T10:34:17+01:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "766e7913-f501-4b7e-9690-a655bcac7bd0",
"relationship": "Father"
}
]
}
]
}