Delete a comment by ID
DELETE
/v1/comments/{uuid}
const url = 'https://api.adversarial.com/api/v1/comments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.adversarial.com/api/v1/comments/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”uuid
required
string format: uuid
Responses
Section titled “Responses”Delete a comment by ID
Media typeapplication/json
Examplegenerated
example