Skip to main content
DELETE
/
v1
/
media
/
sounds
/
{soundId}
curl -X DELETE https://api.infinipost.co/v1/media/sounds/sound_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "soundId": "sound_abc123",
  "message": "Sound deleted successfully"
}

Path Parameters

soundId
string
required
The unique sound identifier.

Response

success
boolean
Whether the sound was deleted successfully.
soundId
string
ID of the deleted sound.
message
string
Confirmation message.
curl -X DELETE https://api.infinipost.co/v1/media/sounds/sound_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "soundId": "sound_abc123",
  "message": "Sound deleted successfully"
}
Deleting a sound does not affect posts that are already using it. Only new posts will be unable to use the deleted sound.

Error Responses

Sound Not Found
{
  "error": {
    "code": "not_found",
    "message": "Sound sound_abc123 not found"
  }
}