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":["300f0296-8f99-406e-a711-3879fcbaffcc","bbb55a6e-718f-4683-94fe-0291c121d3b1","2a6e2cbe-7e39-4f6b-b802-f56257cf829c"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"300f0296-8f99-406e-a711-3879fcbaffcc",
"bbb55a6e-718f-4683-94fe-0291c121d3b1",
"2a6e2cbe-7e39-4f6b-b802-f56257cf829c"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}