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":["c6bd85a8-c7c7-4dda-b86c-e91a9a834a06","a6099fd8-eb48-439f-b68e-40b808a7bdc1","078d582e-dd09-4bf2-83bf-bc7d3bf7aff0"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"c6bd85a8-c7c7-4dda-b86c-e91a9a834a06",
"a6099fd8-eb48-439f-b68e-40b808a7bdc1",
"078d582e-dd09-4bf2-83bf-bc7d3bf7aff0"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}