Skip to main content

Asset Management

To retrieve a list of Lives based on specific criteria, you can send a GET request to the following API:

GET /bv/cms/v1/lives

The available query parameters are:

FilterTypeDescription
current_pageintegerThe current page number of the pagination. The default value is 1.
filter.namestringThe value of filtering Lives by name. The API returns only Lives that match the specified name.
items_per_pageintegerThe number of items to return per page. The default value is 20.

Here's an example of querying with the name "LIVE_NAME" with 10 items per page:

/bv/cms/v1/lives?filter.name=LIVE_NAME&items_per_page=10