Add participants to a group

POST /api/v1/group/{group_uuid}/participants

Headers

Path parameters

application/json

Body Required

  • participants array[string] 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":["f70c6d8e-78f0-4d60-aced-4599b0806532","1a63c9d7-013e-4557-8e03-0c5ba9d0f86d"]}'
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": [
    "f70c6d8e-78f0-4d60-aced-4599b0806532",
    "1a63c9d7-013e-4557-8e03-0c5ba9d0f86d"
  ]
}