PUT
/api/v1/circles/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/circles/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--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":[null,null],"group_uuids":[null,null]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Jones Family",
"bg_colour": "#DDDDDD",
"account_uuids": [
null,
null
],
"group_uuids": [
null,
null
]
}
Response examples (200)
{
"name": "Jones Family",
"uuid": "9a1256f5-8631-4b14-9b8d-64dd31af12b2",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "caa80665-c42f-4ff3-88e7-037766e5aa6d",
"created_at": "2025-09-17T15:46:51+01:00",
"updated_at": "2025-09-17T15:46:51+01:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "2804c636-cc52-4450-be16-b886d2b73898",
"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": [
{
"name": "Gareth Thompson",
"role": "client",
"type": "client",
"uuid": "d8568866-7091-4f67-9c8b-f18fe95394cb",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-09-17T15:46:51+01:00",
"first_name": "Gareth",
"updated_at": "2025-09-17T15:46:51+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
}
],
"bg_colour": "#35f4e1",
"photo_url": "https://eu.ui-avatars.com/api/?name=jones+family",
"created_at": "2025-09-17T15:46:51+01:00",
"updated_at": "2025-09-17T15:46:51+01:00",
"joint_account_uuid": "bfd10d27-df10-4da9-947f-bdb9d4ca59f9",
"login_access_level": "write",
"external_references": [
{
"uuid": "5699b65d-e2f3-4611-9ac9-fbcc3a86b96d",
"reference": "AB123456",
"created_at": "2025-09-17T15:46:51+01:00",
"updated_at": "2025-09-17T15:46:51+01:00",
"third_party": "nucleus"
}
]
}