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":[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 (201)
{
"name": "Jones Family",
"uuid": "0af810d4-0903-4190-a784-46264c3ace5f",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "01d47a8f-1c05-4612-865f-b9d00b3b18b2",
"created_at": "2025-09-12T09:45:50+01:00",
"updated_at": "2025-09-12T09:45:50+01:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "63aa408a-8120-489e-af24-5188b04968ca",
"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": "a20a410f-8cf2-47c9-8dbc-ae3cfd857b99",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-09-12T09:45:50+01:00",
"first_name": "Gareth",
"updated_at": "2025-09-12T09:45:50+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-12T09:45:50+01:00",
"updated_at": "2025-09-12T09:45:50+01:00",
"joint_account_uuid": "6126f995-1b4c-4d5d-8bb5-cf994c511afc",
"login_access_level": "write",
"external_references": [
{
"uuid": "8eb46dc7-3d94-4eef-b38b-5531730c310b",
"reference": "AB123456",
"created_at": "2025-09-12T09:45:50+01:00",
"updated_at": "2025-09-12T09:45:50+01:00",
"third_party": "nucleus"
}
]
}