Query parameters
-
Filter by a comma separated list of UUIDs.
-
Filter by a comma separated list of account UUIDs.
-
Filter by a comma separated list of group UUIDs.
-
Filter by the circle name.
-
Comma separated list of relationships to include in the response. Valid relationships are [accounts,firm,groups]
-
Field to sort by. Valid fields are [name, created_at, updated_at]. Negative sign to denote DESC. Defaults to 'name'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/circles
curl \
--request GET 'https://api.plannrcrm.com/api/v1/circles' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Jones Family",
"uuid": "e45c11cb-14c4-4db9-ba7b-0029c1baa7c3",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "e4ce5e38-b4df-49f7-b18e-21c81f1c0cbb",
"created_at": "2025-11-03T10:41:00+00:00",
"updated_at": "2025-11-03T10:41:00+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "613d70e5-ae7b-4be7-9c34-4cb798787380",
"description": "UUID of the account"
},
"email": {
"example": "gareth@codepotato.co.uk",
"description": "Email of the account"
},
"last_name": {
"example": "Thompson",
"description": "Last name of the account"
},
"first_name": {
"example": "Gareth",
"description": "First name of the account"
}
},
"participants_count": "3"
}
],
"accounts": [
{
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "b19971eb-a1ef-47f1-911d-17bdaa47b07c",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"circles": "App\\Http\\Resources\\CircleResource",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"created_at": "2025-11-03T10:41:00+00:00",
"first_name": "Gareth",
"updated_at": "2025-11-03T10:41:00+00:00",
"with_login": true,
"inactive_at": "2025-11-03",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-11-03T10:41:00+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-11-03T10:41:00+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-11-03T10:41:00+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-11-03T10:41:00+00:00"
}
],
"bg_colour": "#35f4e1",
"photo_url": "https://eu.ui-avatars.com/api/?name=jones+family",
"created_at": "2025-11-03T10:41:00+00:00",
"updated_at": "2025-11-03T10:41:00+00:00",
"joint_account_uuid": "de8e7b03-b281-466c-93ea-948cc8ad500f",
"login_access_level": "write",
"external_references": [
{
"uuid": "03de8e76-719d-41e1-bbd9-aa93e91fe88d",
"reference": "AB123456",
"created_at": "2025-11-03T10:41:00+00:00",
"updated_at": "2025-11-03T10:41:00+00:00",
"third_party": "nucleus"
}
]
}
]
}