Update Conversation
Updates the status, tags, or metadata of a conversation.
https://api.vantaxai.com/v1/conversations/{conversation_id}Only include the fields you want to change. Sending `tags` or `metadata` replaces the existing value wholesale — read the conversation first and merge client-side if you need to append. Use this endpoint to triage threads (open → pending → closed), label them, and attach your own structured data.
Status workflow
tags and metadata are replaced, not merged
Metadata shape
Headers
AuthorizationstringrequiredBearer authentication with your secret API key.
example: Bearer vx_live_3fa9c2…
Content-TypestringrequiredMust be application/json for requests with a body.
example: application/json
Path Parameters
conversation_idstringrequiredThe conversation to update.
example: conv_7b2e9a
Body Parameters
statusstringoptionalMove the conversation through your triage workflow.
openpendingclosedexample: closed
tagsstring[]optionalReplaces the conversation's tags with this exact set. Send an empty array to clear all tags.
example: ["vip", "billing"]
metadataobjectoptionalArbitrary key/value pairs (string values) stored on the conversation. Replaces the existing metadata object.