Delete a preset
This endpoint deletes a voice settings preset. You can only delete your own custom presets (not default/public presets).
Authorization
- Only the preset owner can delete their presets
- Default/public presets cannot be deleted
- Returns 403 error if you attempt to delete a preset you don't own
HTTP Request
DELETE https://app.resemble.ai/api/v2/voice_settings_presets/:uuid
| URL Parameters | Type | Description |
|---|---|---|
| uuid | string | UUID of the preset to delete |
HTTP Response
Success Response (200)
{
"success": true,
"message": "Preset deleted successfully"
}
Error Response (403 Forbidden)
{
"success": false,
"message": "You are not authorized to perform this action"
}
Error Response (404 Not Found)
{
"success": false,
"message": "Preset not found"
}
Notes
- This action is permanent and cannot be undone
- Any synthesis requests using this preset UUID will fail after deletion
- After deletion, you'll have room to create a new preset if you were at the 5-preset limit
Examples
NodeJS
1
Coming soon...Try it out
API Key: