Get all Accounts for the Circle Run in API Explorer
Ask AI
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": "57f44d5c-1160-497a-8595-86f4bf9a9e9d",
"email": "gareth@codepotato.co.uk",
"logins": [
{
"firm": "App\\Http\\Resources\\FirmResource",
"uuid": "1c3620a2-1df4-4036-b07b-980eb91ae2dc",
"email": "gareth@plannrcrm.com",
"account": "App\\Http\\Resources\\AccountResource",
"primary": false,
"last_name": "Thompson",
"user_type": "standard",
"created_at": "2026-04-09T17:35:05+01:00",
"expires_at": "2026-07-18T17:35:05+01:00",
"first_name": "Gareth",
"updated_at": "2026-04-09T17:35:05+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": "2026-04-09T17:35:05+01:00",
"updated_at": "2026-04-09T17:35:05+01:00",
"linked_clients": [
{
"name": "Gareth",
"uuid": "b497d98d-c12f-479b-946b-87d2c5d28b35",
"relationship": "Father"
}
]
}
]
}