List audio profile sets
GEThttps://api.one.blendvision.com/bv/configuration/v1/audio-profile-sets
Lists the array of AudioProfileSet
resources.
Request
Query Parameters
Required. The current page in the current pagination. Need to assign positive number. Min: 1 Max: 100
Required. The number of items per page in the current pagination. Need to assign positive number. Min: 1 Max: 100
Possible values: [PRESET_EXCLUDE
, PRESET_ONLY
]
Header Parameters
To invoke this API using api_token
, you need to set the x-bv-org-id
header to specify the organization for which you want to perform the action.
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
profile_sets object[]
pagination object
{
"profile_sets": [
{
"id": "string",
"name": "string",
"protocols": [
"PROTOCOL_HLS"
],
"smart_abr": true,
"profiles": [
{
"id": "string",
"name": "string",
"bitrate": "string",
"codec": "AUDIO_CODEC_AAC"
}
],
"codec": "AUDIO_CODEC_AAC"
}
],
"pagination": {
"total_items": 0,
"items_per_page": 0,
"current_page": 0
}
}
A bad request response.
The code
is 3
means got an invalid argument. There are more HTTP status code mappings listed on here and gRPC code on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A unauthenticated response.
The header authorization
was missing or unidentified.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A forbidden response.
It means that the provided authorization
did not have enough permission to access the resource or the API.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A server error response. There are more HTTP status code mappings listed on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Authorization: authorization
name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
- curl
- python
- go
- nodejs
- php
- CURL
curl -L 'https://api.one.blendvision.com/bv/configuration/v1/audio-profile-sets' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>'