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":["c12ecdea-93b0-4b25-b448-36e620816f58","c86cfe1c-d659-4bcf-8841-b941c595d96b"]}'
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": [
"c12ecdea-93b0-4b25-b448-36e620816f58",
"c86cfe1c-d659-4bcf-8841-b941c595d96b"
]
}