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":["39f60f53-50a0-4691-9bce-1a37316e1547","68db9a74-ffa7-43d3-ab8b-41b9c1aed0d0","54a6af87-4933-4f7e-bf67-f998ab0a8e71"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"39f60f53-50a0-4691-9bce-1a37316e1547",
"68db9a74-ffa7-43d3-ab8b-41b9c1aed0d0",
"54a6af87-4933-4f7e-bf67-f998ab0a8e71"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}