POST
/api/v1/group
curl \
--request POST 'https://api.plannrcrm.com/api/v1/group' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"Accounting","participants":["064e093c-ead2-424c-8ba2-8f26a4aadafe","57909b29-ee3e-45bd-a614-45ab8377c053","59e9648c-47c3-427f-baae-aafc8a4ada41"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Accounting",
"participants": [
"064e093c-ead2-424c-8ba2-8f26a4aadafe",
"57909b29-ee3e-45bd-a614-45ab8377c053",
"59e9648c-47c3-427f-baae-aafc8a4ada41"
]
}
Response examples (200)
{
"name": "finance",
"slug": "finance",
"uuid": "61d13d2c-0ca5-48f2-8326-ee28d28ce624",
"created_at": "2026-03-18T16:05:25+00:00",
"updated_at": "2026-03-18T16:05:25+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "be7b6c0c-45bf-4444-8dad-c5667aabc8b1",
"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"
}