DELETE a Conversation
URL: https://{{server-url}}/api//v1/change/{change_id}/conversation/{conversation_id}
Example: https://{{server-url}}/api//v1/change/1/conversation/1
You can delete a conversation (collaborate and note) within a change request by calling the above endpoint with the ticket ID.
You need the following key-values:
Header
| Key | Description |
|---|---|
| Authorization | Bearer/API Key {access token obtained after authorization} |
Example (Request & Response)
Request
curl --location --request DELETE 'https://172.16.11.160/api//v1/change/1/conversation/1' \
--header 'Authorization: Apikey cuhEo6Av4WD6sShZ%40oyNkwV7KPlzyNjGMfyzwJO88JSMA3tkyrSmpl60iJIayOHvAHA9n' \
--header 'Cookie: Path=/
Response
{
"userMessage": "Conversation has been deleted successfully.",
"warningMessage": null,
"id": 1,
"success": false
}