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

1{
2 "success": true
3}

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

1{
2 "success": false,
3 "message": "Not found"
4}