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":["18004639-e72e-4750-837a-5639306383bd","ef3e864e-caca-4d27-9fa4-6d6cea8be05a"]}'
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": [
"18004639-e72e-4750-837a-5639306383bd",
"ef3e864e-caca-4d27-9fa4-6d6cea8be05a"
]
}