Add participants to conversation Run in API Explorer
Ask AI
POST
/api/v1/conversation/{conversation_uuid}/participants
curl \
--request POST 'https://api.plannrcrm.com/api/v1/conversation/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"participants":["b95d525a-44a6-40af-afc3-4b0271e34fce","6b1f202b-a012-435b-bf48-a7dcf32bf3a2","b0e0813f-21c9-416f-9e6b-eb988173487f"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"b95d525a-44a6-40af-afc3-4b0271e34fce",
"6b1f202b-a012-435b-bf48-a7dcf32bf3a2",
"b0e0813f-21c9-416f-9e6b-eb988173487f"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}