OpenAI API DocsCommunity translation · Official structure

Resources

Audio Voice Consents — Create

OpenAI API endpoint method reference.

English source
This English page is rendered from the official Markdown mirror in this repository.View on OpenAI ↗

For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.

post /audio/voice_consents

Upload a voice consent recording.

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.

    • "audio.voice_consent"

Example

curl https://api.openai.com/v1/audio/voice_consents \
    -H 'Content-Type: multipart/form-data' \
    -H "Authorization: Bearer $OPENAI_API_KEY" \
    -F language=language \
    -F name=name \
    -F 'recording=@/path/to/recording'

Response

{
  "id": "cons_1234",
  "created_at": 0,
  "language": "language",
  "name": "name",
  "object": "audio.voice_consent"
}

Example

curl https://api.openai.com/v1/audio/voice_consents \
  -X POST \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -F "name=John Doe" \
  -F "language=en-US" \
  -F "recording=@$HOME/consent_recording.wav;type=audio/x-wav"