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":["f4ebe85e-e39c-4a67-b82d-1e9818df4601","1372c926-a406-4757-8f53-fdb9f02ea520","30b52c71-0288-4815-a6bc-9eed158c3229"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"f4ebe85e-e39c-4a67-b82d-1e9818df4601",
"1372c926-a406-4757-8f53-fdb9f02ea520",
"30b52c71-0288-4815-a6bc-9eed158c3229"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}