Skip to main content

DELETE 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/154

You can delete a conversation (collaborate and note) within a release by calling the above endpoint with the ticket ID.

You need the following key-values:

Header

KeyDescription
AuthorizationBearer/API Key {access token obtained after authorization}

Example (Request & Response)

Request

curl --location --request DELETE 'http://172.16.11.160/api/v1/release/9/conversation/154' \
--header 'Authorization: Apikey UMKSU3dhE8ERESeb%40LiklySVfaJL2i42wh%2Behea9x%2FmW46Uu5YZUz6YnxFSyQ6w%3D%3D' \
--header 'Content-Type: application/json' \
--data ''

Response

{
"userMessage": "Conversation has been deleted successfully.",
"warningMessage": null,
"id": 9,
"success": false
}