Saltar al contenido principal
DELETE
/
v1
/
voice
/
favourite
/
{voice_id}
Remove Favourite Voice
import requests

url = "https://api.diga.io/v1/voice/favourite/{voice_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "status": "error",
  "error_code": "VOICE_NOT_FOUND",
  "message": "Voice not found in favourites"
}

Documentation Index

Fetch the complete documentation index at: https://docs.diga.io/llms.txt

Use this file to discover all available pages before exploring further.

Autorizaciones

Authorization
string
header
requerido

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Parámetros de ruta

voice_id
string<uuid>
requerido

Respuesta

Successful Response