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","account_uuids":[null,null],"group_uuids":[null,null]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Jones Family",
"account_uuids": [
null,
null
],
"group_uuids": [
null,
null
]
}
Response examples (200)
{
"name": "Jones Family",
"uuid": "1599ef3a-5258-4426-b5b9-29595987b570",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "7c34ae09-d112-4bcf-b9d3-0db3b03ffc63",
"created_at": "2025-06-26T11:37:02+01:00",
"updated_at": "2025-06-26T11:37:02+01:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "8adb6891-f39d-4bfb-82a3-3e40f2e176ac",
"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": "c42e2916-9f85-43a1-9052-1db08481cf14",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-06-26T11:37:02+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-26T11:37:02+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
}
],
"created_at": "2025-06-26T11:37:02+01:00",
"updated_at": "2025-06-26T11:37:02+01:00",
"joint_account_uuid": "e94005cf-8f66-47b0-b20f-23654c532233"
}