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 \
--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":["e9a258e7-977d-4487-b065-f492b837a57f","0608d911-6589-43b0-b7ec-d611a26a6c88"]}'
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": [
"e9a258e7-977d-4487-b065-f492b837a57f",
"0608d911-6589-43b0-b7ec-d611a26a6c88"
]
}