Delete Submission

Permanently delete a Signal submission belonging to your team.

DELETE https://app.resemble.ai/api/v2/signal/{id}

Path parameters

FieldTypeRequiredDescription
idintegerYesSubmission identifier returned by Score Content or List Submissions.

Example

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

Response

{
"success": true
}

Submissions that do not exist, or that belong to another team, return 404 Not Found:

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