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": [
[
{
"uuid": "ebeab204-f8d6-46a4-8a66-ad971b6a030f",
"created_at": "2026-06-29T13:21:55+01:00",
"updated_at": "2026-06-29T13:21:55+01:00",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"linked_clients": [
{
"uuid": "fe6dc96c-1fb0-4245-b05c-16f63afce15c",
"name": "Gareth",
"relationship": "Father"
}
],
"logins": [
{
"uuid": "893802c9-318a-4ea8-b6df-c7efa2a53aa3",
"created_at": "2026-06-29T13:21:55+01:00",
"updated_at": "2026-06-29T13:21:55+01:00",
"expires_at": "2026-10-07T13:21:55+01:00",
"has_write_permission": false,
"has_delete_permission": false,
"primary": false,
"receives_unread_notifications_email": true,
"wealth_enabled": true,
"goals_enabled": true,
"factfind_enabled": true,
"tasks_enabled": true,
"welcome_enabled": true,
"first_name": "Gareth",
"last_name": "Thompson",
"email": "gareth@plannrcrm.com",
"user_type": "standard",
"account": "App\\Http\\Resources\\AccountResource",
"firm": "App\\Http\\Resources\\FirmResource",
"is_impersonated": false
}
]
}
]
]
}