Update profile
PUThttps://api.one.blendvision.com/bv/configuration/v1/profiles/:id
Modifies the details of an existing profile using the specified id.
Request
Path Parameters
id stringrequired
Required. The resource identifier of profile.
Header Parameters
x-bv-org-id stringrequired
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.
- application/json
Body
required
profile objectrequired
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
profile object
{
"profile": {
"audio_bitrate": "24",
"b_frame": true,
"codec_profile": "CODEC_PROFILE_AUTO",
"frame_rate": "FRAME_RATE_SOURCE",
"gop_size": 2,
"id": "e9f5ca1c-1d38-4baf-9527-96fde619f496",
"level": "CODEC_PROFILE_LEVEL_AUTO",
"name": "test",
"preset": false,
"segment_duration": 6,
"standard": "RESOLUTION_TYPE_SD",
"video_bitrate": "60",
"video_codec": "VIDEO_CODEC_H264",
"video_height": 800,
"video_width": 800
}
}
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
code int32
message string
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
code int32
message string
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
code int32
message string
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
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
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 -X PUT 'https://api.one.blendvision.com/bv/configuration/v1/profiles/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"id": "7b6f9698-590f-45bd-b31e-b76ff5c2d27a",
"profile": {
"audio_bitrate": "24",
"b_frame": true,
"codec_profile": "CODEC_PROFILE_AUTO",
"frame_rate": "FRAME_RATE_SOURCE",
"gop_size": 2,
"id": "e9f5ca1c-1d38-4baf-9527-96fde619f496",
"level": "CODEC_PROFILE_LEVEL_AUTO",
"name": "test",
"preset": false,
"segment_duration": 6,
"standard": "RESOLUTION_TYPE_SD",
"video_bitrate": "60",
"video_codec": "VIDEO_CODEC_H264",
"video_height": 800,
"video_width": 800
}
}'
ResponseClear