Delete Detection

DELETE https://app.resemble.ai/api/v2/detect/{uuid}

Delete a detection belonging to your team. Once deleted, the detection no longer appears in List Detects, and Get Detection returns 404.

curl --request DELETE 'https://app.resemble.ai/api/v2/detect/DETECT_UUID' \
-H 'Authorization: Bearer YOUR_API_TOKEN'

Path Parameters

FieldTypeRequiredDescription
uuidstringYesUUID of the detection, as returned by Create Detection or List Detects.

Response

{
"success": true,
"message": "Detection was successfully deleted."
}

Error Response (404)

Unknown UUIDs and detections belonging to another team are indistinguishable, so neither reveals whether the UUID exists:

{
"success": false,
"message": "Not found"
}