Add participants to a group
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
UUIDs of accounts to add to the group.
POST /api/v1/group/{group_uuid}/participants
curl \
-X POST https://api.plannrcrm.com/api/v1/group/group_uuid/participants \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
-d '{"participants":["dcd17313-c095-4998-948d-4ff75e5a3750","899e840e-3fa8-4493-979e-12bd7158d082"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"dcd17313-c095-4998-948d-4ff75e5a3750",
"899e840e-3fa8-4493-979e-12bd7158d082"
]
}