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":["8b6b8b90-ce73-4670-b0ff-16a15619c877","c68cdf00-257c-49de-b0d5-2b09f954a8dc","83de013d-533d-4187-9391-bfbe36d20646"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Accounting",
"participants": [
"8b6b8b90-ce73-4670-b0ff-16a15619c877",
"c68cdf00-257c-49de-b0d5-2b09f954a8dc",
"83de013d-533d-4187-9391-bfbe36d20646"
]
}
Response examples (200)
{
"name": "finance",
"slug": "finance",
"uuid": "befda770-49ca-4779-bef1-3335d2424ba7",
"created_at": "2025-12-24T11:02:59+00:00",
"updated_at": "2025-12-24T11:02:59+00:00",
"participants": {
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"uuid": {
"example": "9d6394e2-1b8c-4f65-9981-2a0580efa4f1",
"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"
}