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":["d0d897e0-cf77-4e12-98c8-9ba90ac3ec00","bed208e9-5ba0-4602-a963-502cf231694c","cdd2134d-70dd-43f4-bc18-a6d4d0ee2fbf"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"d0d897e0-cf77-4e12-98c8-9ba90ac3ec00",
"bed208e9-5ba0-4602-a963-502cf231694c",
"cdd2134d-70dd-43f4-bc18-a6d4d0ee2fbf"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}