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":["83e49057-7e5c-4e0b-97ad-688ba60dc16a","4eb927dc-1033-404b-8243-76826bfd41b3","83090c0d-5320-48ce-8419-6cc4abd9eafb"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Accounting",
"participants": [
"83e49057-7e5c-4e0b-97ad-688ba60dc16a",
"4eb927dc-1033-404b-8243-76826bfd41b3",
"83090c0d-5320-48ce-8419-6cc4abd9eafb"
]
}
Response examples (200)
{
"name": "finance",
"slug": "finance",
"uuid": "98ff0272-0dec-40d7-8de2-569ae0121162",
"created_at": "2026-01-16T13:10:22+00:00",
"updated_at": "2026-01-16T13:10:22+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "9bfbc765-9095-4165-b7de-a505bf53b065",
"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"
}