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":["886310d5-2898-467d-bd93-f0548c1c2ab6","d2239890-58d5-47a0-9081-a78140424aae","e644941f-1fe4-40df-9540-479f8f123530"],"group_uuids":["fa91c173-b30d-4fcb-850f-5eb75dc8c9d2","eb8ac52a-ae7f-4a9b-b720-29f0dd4ee8c1","7ce0b99f-8b88-486a-82b3-0cf037714421"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Jones Family",
"bg_colour": "#DDDDDD",
"account_uuids": [
"886310d5-2898-467d-bd93-f0548c1c2ab6",
"d2239890-58d5-47a0-9081-a78140424aae",
"e644941f-1fe4-40df-9540-479f8f123530"
],
"group_uuids": [
"fa91c173-b30d-4fcb-850f-5eb75dc8c9d2",
"eb8ac52a-ae7f-4a9b-b720-29f0dd4ee8c1",
"7ce0b99f-8b88-486a-82b3-0cf037714421"
]
}
Response examples (201)
{
"name": "Jones Family",
"uuid": "7bdff181-c218-4929-b1c0-5d632633e14a",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "ccb108a4-27df-48a1-a62a-6f32db45b69c",
"created_at": "2026-03-18T16:05:25+00:00",
"updated_at": "2026-03-18T16:05:25+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "8d2b1a18-3ee2-4849-a16f-31e909a0ee83",
"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": "e1c2d654-7820-4d44-ae28-c3350d993e00",
"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-03-18T16:05:25+00:00",
"first_name": "Gareth",
"updated_at": "2026-03-18T16:05:25+00:00",
"with_login": true,
"inactive_at": "2026-03-18",
"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-03-18T16:05:25+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-03-18T16:05:25+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-03-18 16:05:25",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-03-18T16:05:25+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-03-18T16:05:25+00:00"
}
],
"bg_colour": "#35f4e1",
"photo_url": "https://eu.ui-avatars.com/api/?name=jones+family",
"created_at": "2026-03-18T16:05:25+00:00",
"updated_at": "2026-03-18T16:05:25+00:00",
"joint_account_uuid": "21bc8ce3-b1f1-4f9a-974f-36da9e8217db",
"login_access_level": "write",
"external_references": [
{
"uuid": "5d3eb9ab-0f34-4b10-b1ee-2ef3c16bb26c",
"reference": "AB123456",
"created_at": "2026-03-18T16:05:25+00:00",
"updated_at": "2026-03-18T16:05:25+00:00",
"third_party": "nucleus"
}
]
}