Skip to main content
GET
/
organization
/
voices
/
permissions
List
curl --request GET \
  --url https://api.beyondwords.io/v1/organization/voices/permissions \
  --header 'X-Api-Key: <api-key>'
[
  {
    "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"
  },
  {
    "id": 2,
    "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

X-Api-Key
string
header
required

Query Parameters

pagination[limit]
integer

'limit' sets the number of results to return in each page.

pagination[offset]
integer

'offset' sets the first position to return from the results of the query. The default is 0, which starts the page at the first result.

filter[project.id]
string

filter by project id

filter[voice.id]
string

filter by voice id

Response

OK

id
integer
project
object
voice
object
included
boolean
created
string<date-time>

Time at which the object was created (ISO 8601)

updated
string<date-time>

Time at which the object was updated (ISO 8601)