Retrieve voice consent
GET/audio/voice_consents/{consent_id}
Retrieves a voice consent recording.
Path Parameters
consent_id: string
Returns
id: string
The consent recording identifier.
created_at: number
The Unix timestamp (in seconds) for when the consent recording was created.
language: string
The BCP 47 language tag for the consent phrase (for example, en-US).
name: string
The label provided when the consent recording was uploaded.
object: "audio.voice_consent"
The object type, which is always audio.voice_consent.
Retrieve voice consent
curl https://api.openai.com/v1/audio/voice_consents/$CONSENT_ID \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "cons_1234",
"created_at": 0,
"language": "language",
"name": "name",
"object": "audio.voice_consent"
}Returns Examples
{
"id": "cons_1234",
"created_at": 0,
"language": "language",
"name": "name",
"object": "audio.voice_consent"
}