Add participants to a group Run in API Explorer
Ask AI
POST
/api/v1/group/{group_uuid}/participants
curl \
--request POST 'https://api.plannrcrm.com/api/v1/group/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"participants":["f872fb34-6605-416c-aa02-e0eae8af1522","6d19e7b1-1c80-4a47-8898-bd4e221a7cff","15207672-7396-4ccc-8fb9-4d9527c3986b"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"f872fb34-6605-416c-aa02-e0eae8af1522",
"6d19e7b1-1c80-4a47-8898-bd4e221a7cff",
"15207672-7396-4ccc-8fb9-4d9527c3986b"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}