Add participants to a group
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
group_uuid
integer Required
Body
Required
-
participants
array[string] Required UUIDs of accounts to add to the group.
POST
/api/v1/group/{group_uuid}/participants
curl \
--request POST 'https://api.plannrcrm.com/api/v1/group/group_uuid/participants' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"participants":["14e2d5db-ad61-464e-b4c8-b4983cf6f6d8","e4e9620c-87a0-4e8e-8110-78d762c2870c"]}'
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": [
"14e2d5db-ad61-464e-b4c8-b4983cf6f6d8",
"e4e9620c-87a0-4e8e-8110-78d762c2870c"
]
}