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": [
"af8e5bf4-dd7d-42f4-b319-87ab5bbed358",
"f755d084-07d0-4165-bc47-0520ec6101d5",
"9c5c137a-2849-406e-8aea-b93c60d15abd"
]
}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"af8e5bf4-dd7d-42f4-b319-87ab5bbed358",
"f755d084-07d0-4165-bc47-0520ec6101d5",
"9c5c137a-2849-406e-8aea-b93c60d15abd"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}