Skip to main content
PUT
/
organization
/
voices
/
{voice_id}
/
speaker_verification
Update
curl --request PUT \
  --url https://api.beyondwords.io/v1/organization/voices/{voice_id}/speaker_verification \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "note": "Verified by legal team",
  "consent_statement": {
    "url": "https://example.com/consent.pdf"
  }
}
'
{
  "id": 1,
  "voice_id": 42,
  "note": "Verified by legal team",
  "consent_statement": {
    "url": "https://example.com/consent.pdf"
  },
  "created": "2024-01-01 00:00:00 UTC",
  "updated": "2024-01-01 00:00:05 UTC"
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

voice_id
string
required

Voice ID

Body

application/json
note
string | null

Optional note about the verification

Consent statement file reference

Response

OK

id
integer

Unique identifier for the object

voice_id
integer

ID of the voice this verification belongs to

note
string | null

Optional note about the verification

Consent statement file

created
string

Time at which the object was created (ISO 8601)

updated
string

Time at which the object was updated (ISO 8601)