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":["c9dce449-46b3-49d1-bb5f-6b0d8b773f8e","5f9bb43a-7faf-4969-97ad-91c32d22c172"]}'
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": [
"c9dce449-46b3-49d1-bb5f-6b0d8b773f8e",
"5f9bb43a-7faf-4969-97ad-91c32d22c172"
]
}