PATCH Update a Conversation
URL: https://{{server-url}}/api/v1/release/{release_id}/conversation/{conversation_id}
Example: http://172.16.11.160/api/v1/release/9/conversation/156
You can update a note in the Release conversation by calling the above endpoint with the ticket ID and conversation ID. You cannot update a collaboration.
You need the following key-values:
Header
| Key | Description |
|---|---|
| Authorization | Bearer/API Key {access token obtained after authorization} |
Body
{
"conversationType": "note",
"details": "<p>This is an internal note about the request progress.</p>",
"subject": "Progress Update",
"conversationState": "published"
}
Example (Request & Response)
Request
curl --location --request PATCH 'http://172.16.11.160/api/v1/release/9/conversation/156' \
--header 'Authorization: Apikey UMKSU3dhE8ERESeb%40LiklySVfaJL2i42wh%2Behea9x%2FmW46Uu5YZUz6YnxFSyQ6w%3D%3D' \
--header 'Content-Type: application/json' \
--data '
{
"conversationType": "note",
"details": "<p>This is an internal note about the request progress.</p>",
"subject": "Progress Update",
"conversationState": "published"
}
'
Response
{
"id": 156,
"conversationType": "note",
"details": "<p>This is an internal note about the request progress.</p>",
"createdByName": "Jerry",
"createdByEmail": "jerry@motadata.com",
"createdTime": "Fri, May 29, 2026 05:41 pm",
"updatedTime": "Fri, May 29, 2026 06:32 pm",
"subject": "[REL-9]: New Software Release v8.7.4",
"conversationState": "published",
"emailIds": [],
"ccEmailIds": [],
"updatable": true,
"deletable": true,
"fileAttachments": []
}