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":["efacc315-5628-4a30-9d57-154e0ebf50cf","ff8b6b5c-71ec-4a89-abb7-11a6fb948f90","3f13a9e6-19b3-4b5d-b020-4492bc1750a9"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"efacc315-5628-4a30-9d57-154e0ebf50cf",
"ff8b6b5c-71ec-4a89-abb7-11a6fb948f90",
"3f13a9e6-19b3-4b5d-b020-4492bc1750a9"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}