Getting started
Analytics
Background tracks
Content
Languages
Organization settings
Project voices
Player settings
Player
Playlists
Webhooks
Projects
Roles
RSS Feed
Rules
Summarization Settings
Video Settings
Project voices
Create a project voice
Project voices
Create a project voice
Add a voice permission to a project
POST
/
organization
/
voices
/
permissions
curl --request POST \
--url https://api.beyondwords.io/v1/organization/voices/permissions \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"project": {
"id": 1
},
"voice": {
"id": 1
},
"included": true
}'
{
"id": 1,
"project": {
"id": 1,
"name": "Test project"
},
"voice": {
"id": 1,
"name": "Test voice"
},
"included": true,
"created": "2023-01-01 00:00:00 UTC",
"updated": "2023-01-01 00:00:05 UTC"
}
Authorizations
Body
application/json
Response
201 - application/json
successful
Time at which the object was created (ISO 8601)
Time at which the object was updated (ISO 8601)
curl --request POST \
--url https://api.beyondwords.io/v1/organization/voices/permissions \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"project": {
"id": 1
},
"voice": {
"id": 1
},
"included": true
}'
{
"id": 1,
"project": {
"id": 1,
"name": "Test project"
},
"voice": {
"id": 1,
"name": "Test voice"
},
"included": true,
"created": "2023-01-01 00:00:00 UTC",
"updated": "2023-01-01 00:00:05 UTC"
}