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":["49452bf3-8884-4751-aada-de5d8ff4ce4a","916dd699-478c-476a-8cb1-29fcfd046768"]}'
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": [
    "49452bf3-8884-4751-aada-de5d8ff4ce4a",
    "916dd699-478c-476a-8cb1-29fcfd046768"
  ]
}