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":["79dd0aa1-c89f-4216-99ab-e28d1bd0597f","08a4cff5-4fb2-4373-adf2-8c910e7ee071","8a0591aa-d185-4500-a8e6-395126ede810"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"79dd0aa1-c89f-4216-99ab-e28d1bd0597f",
"08a4cff5-4fb2-4373-adf2-8c910e7ee071",
"8a0591aa-d185-4500-a8e6-395126ede810"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}