List Highlights
GEThttps://api.one.blendvision.com/bv/cms/v1/highlights
List Highlights
Request
Query Parameters
The id of the source. CLIP_SOURCE_TYPE_VOD -> VOD id
Possible values: [CLIP_SOURCE_TYPE_VOD
]
The type of the source.
The number of items per page in the current pagination.
The current page in the current pagination.
Output only. The total numbers of the list in the current pagination.
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
highlights object[]
page object
{
"highlights": [
{
"id": "string",
"title": "string",
"description": "string",
"status": "HIGHLIGHT_STATUS_CREATED",
"tags": [
{
"name": "string"
}
],
"thumbnail_uri": "string",
"duration": "string",
"resource_type": "RESOURCE_TYPE_LIVE",
"resource_id": "string",
"library_id": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"error_infos": [
{
"reason": "string",
"domain": "string",
"metadata": {}
}
]
}
],
"page": {
"items_per_page": 0,
"current_page": 0,
"total_items": 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/cms/v1/highlights' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>'