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 \
 --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":["daccb276-0a08-4d83-b30a-70406dc7ad74","fd2d31eb-e1f0-48a4-8b3b-1c35d5591847"]}'
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": [
    "daccb276-0a08-4d83-b30a-70406dc7ad74",
    "fd2d31eb-e1f0-48a4-8b3b-1c35d5591847"
  ]
}