POST
/api/v1/circles
curl \
--request POST 'https://api.plannrcrm.com/api/v1/circles' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Jones Family","bg_colour":"#DDDDDD","account_uuids":["154dca5c-2568-483a-b7b5-4dc35d2adf09","c27d36a9-3753-415e-9ad3-de5e48126421","a7a53f53-fe4a-4042-bbc0-92be0cb32958"],"group_uuids":["1e0cf19c-f9d9-4bf5-ac6a-eeeaba618b74","18705add-d808-4da4-bd9c-e2bdce5b59a3","1cf2f788-c056-48fb-8de9-e14d3c92cc64"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Jones Family",
"bg_colour": "#DDDDDD",
"account_uuids": [
"154dca5c-2568-483a-b7b5-4dc35d2adf09",
"c27d36a9-3753-415e-9ad3-de5e48126421",
"a7a53f53-fe4a-4042-bbc0-92be0cb32958"
],
"group_uuids": [
"1e0cf19c-f9d9-4bf5-ac6a-eeeaba618b74",
"18705add-d808-4da4-bd9c-e2bdce5b59a3",
"1cf2f788-c056-48fb-8de9-e14d3c92cc64"
]
}
Response examples (201)
{
"name": "Jones Family",
"uuid": "52d17eae-63b9-4a10-ab5c-f229747f383c",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "272c6df5-cab2-4759-8352-99beac5a47db",
"created_at": "2026-02-06T09:09:43+00:00",
"updated_at": "2026-02-06T09:09:43+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "f1e99d41-2727-47d7-8e3d-4e7819f913f6",
"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": "a205572a-34ad-43a5-8384-9f9bf3436c84",
"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": "2026-02-06T09:09:43+00:00",
"first_name": "Gareth",
"updated_at": "2026-02-06T09:09:43+00:00",
"with_login": true,
"inactive_at": "2026-02-06",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"referral_code": "ABC12345",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2026-02-06T09:09:43+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-02-06T09:09:43+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-02-06 09:09:43",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-02-06T09:09:43+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-02-06T09:09:43+00:00"
}
],
"bg_colour": "#35f4e1",
"photo_url": "https://eu.ui-avatars.com/api/?name=jones+family",
"created_at": "2026-02-06T09:09:43+00:00",
"updated_at": "2026-02-06T09:09:43+00:00",
"joint_account_uuid": "f0ba5ec7-279d-4ccd-948e-adad9061673a",
"login_access_level": "write",
"external_references": [
{
"uuid": "921dbb63-b8f0-448c-890b-80c63ddac50a",
"reference": "AB123456",
"created_at": "2026-02-06T09:09:43+00:00",
"updated_at": "2026-02-06T09:09:43+00:00",
"third_party": "nucleus"
}
]
}