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":["f07fa247-68b6-45be-a31b-9fc4a879a79b","41b086c0-961a-447f-a783-c1cbd821c128","5ea9f6a6-7c0e-4be2-a395-1c04de91c513"],"group_uuids":["8e9f2749-bc76-459d-8839-a4c54c70a50f","13d72e04-e5a4-43ee-b5b0-f4a1de49365c","c6fef43e-b62d-4d04-95bd-d0c4306f2853"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Jones Family",
"bg_colour": "#DDDDDD",
"account_uuids": [
"f07fa247-68b6-45be-a31b-9fc4a879a79b",
"41b086c0-961a-447f-a783-c1cbd821c128",
"5ea9f6a6-7c0e-4be2-a395-1c04de91c513"
],
"group_uuids": [
"8e9f2749-bc76-459d-8839-a4c54c70a50f",
"13d72e04-e5a4-43ee-b5b0-f4a1de49365c",
"c6fef43e-b62d-4d04-95bd-d0c4306f2853"
]
}
Response examples (201)
{
"name": "Jones Family",
"uuid": "ce2324a0-420a-411d-b211-40f3258be768",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "baa4a2b1-6d47-43d5-ae7a-96456e56423e",
"created_at": "2026-01-24T13:07:53+00:00",
"updated_at": "2026-01-24T13:07:53+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "dafc6ba6-9179-4fa0-9621-0416c2b1346f",
"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": "06f4c472-ab64-4e4b-a5cb-a697b7005de6",
"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-01-24T13:07:53+00:00",
"first_name": "Gareth",
"updated_at": "2026-01-24T13:07:53+00:00",
"with_login": true,
"inactive_at": "2026-01-24",
"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": "2026-01-24T13:07:53+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-01-24T13:07:53+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-01-24 13:07:53",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-01-24T13:07:53+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-01-24T13:07:53+00:00"
}
],
"bg_colour": "#35f4e1",
"photo_url": "https://eu.ui-avatars.com/api/?name=jones+family",
"created_at": "2026-01-24T13:07:53+00:00",
"updated_at": "2026-01-24T13:07:53+00:00",
"joint_account_uuid": "b965081d-f746-4519-ba56-6f62a9aa03ae",
"login_access_level": "write",
"external_references": [
{
"uuid": "f1170913-429d-44dd-841d-88f9e12bbb11",
"reference": "AB123456",
"created_at": "2026-01-24T13:07:53+00:00",
"updated_at": "2026-01-24T13:07:53+00:00",
"third_party": "nucleus"
}
]
}