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":["02f1e40d-9661-48db-9941-ba481cfb58b0","883b0c09-4810-4c38-b1fb-6d428b1198a1","d44c7318-fa67-4e9e-8921-54c2f02d7aca"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"participants": [
"02f1e40d-9661-48db-9941-ba481cfb58b0",
"883b0c09-4810-4c38-b1fb-6d428b1198a1",
"d44c7318-fa67-4e9e-8921-54c2f02d7aca"
]
}
Response examples (401)
{
"message": "Unauthenticated."
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}