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","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 (201)
{
"name": "Jones Family",
"uuid": "89e22cda-e2a3-4e4b-a9c7-16dbe0315e37",
"groups": [
{
"name": "finance",
"slug": "finance",
"uuid": "e8ad634f-4a8e-4f1a-a2b1-03356d6bdffa",
"created_at": "2025-07-09T11:58:10+01:00",
"updated_at": "2025-07-09T11:58:10+01:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "661aa741-066a-41c9-901a-1c51b028687b",
"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": "095c9423-f0b6-4485-8bb9-73daa8a7af96",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-07-09T11:58:10+01:00",
"first_name": "Gareth",
"updated_at": "2025-07-09T11:58:10+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
}
],
"created_at": "2025-07-09T11:58:10+01:00",
"updated_at": "2025-07-09T11:58:10+01:00",
"joint_account_uuid": "60d391e0-3651-4b4c-908f-0222b6c7e68f",
"external_references": [
{
"uuid": "3a56a22c-169e-499c-9597-507064a3f28c",
"reference": "AB123456",
"created_at": "2025-07-09T11:58:10+01:00",
"updated_at": "2025-07-09T11:58:10+01:00",
"third_party": "nucleus"
}
]
}