Delete voice consent
DELETE/audio/voice_consents/{consent_id}
Deletes a voice consent recording.
Path Parameters
consent_id: string
Returns
id: string
The consent recording identifier.
deleted: boolean
object: "audio.voice_consent"
Delete voice consent
curl https://api.openai.com/v1/audio/voice_consents/$CONSENT_ID \
-X DELETE \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "cons_1234",
"deleted": true,
"object": "audio.voice_consent"
}Returns Examples
{
"id": "cons_1234",
"deleted": true,
"object": "audio.voice_consent"
}