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":["691eb7de-a32c-4cc8-b0b7-1f516f20b2bf","8be6b08e-1c8a-41d6-82ca-205b8e75a90c","a3b6429e-5013-4c88-874e-13fdd3c78011"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"691eb7de-a32c-4cc8-b0b7-1f516f20b2bf",
"8be6b08e-1c8a-41d6-82ca-205b8e75a90c",
"a3b6429e-5013-4c88-874e-13fdd3c78011"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}