Brightcove Player Management API Reference (2.0.0)
Download OpenAPI specification:Download
Reference for the Brightcove Player Management API, used to manipulate players, player configurations and child players (embeds). To test API requests, you can use our API Testing Tools. Popular testing tools include:
- cURL
- Postman - note that the tutorial here uses the Player Management API as an example
- Insomnia - note that the tutorial here uses the Player Management API as an example
If you haven't gone through Step-by-Step: Player Management, it's highly recommended you start there. You'll get security set up and learn some of the basics of using the Player Management API.
If you are working with this API for the first time, read the Player Management API Overview.
Remember that after making any configuration changes you MUST re-publish your player. Note: Fields in configuration objects need to be set only if you wish to change their values. Fields in configuration objects will be displayed in the response only if explicitly set. For information on authenticating API requests, see OAuth Overview.
For additional in-depth guides to features of the API, see the general documentation.
Base URL: https://players.api.brightcove.com/v2
Get a list of players
Get a list of players
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "item_count": 0,
- "items": [
- {
- "account_id": "1752604059001",
- "id": "default",
- "name": "Brightcove Default Player",
- "description": "This is an instance of the Brightcove Default Player. You can modify this or choose to create your own.",
- "branches": {
- "preview": {
- "configuration": {
- "player": {
- "template": {
- "version": "6.24.1",
- "name": "single-video-template"
}
}, - "video_cloud": {
- "policy_key": "BCpkADawqM1TW0eSP6AUwWK5gRTb0ZL-Wb4SYZkb5unfFMVjCU4NYtePkcJaxArVJpQS1sd4PTJ2HP4TOzY1H3Z-zOM7w9_9y0XzoSI_Xg3F0FTNkcNLPJUVlo4cVnyyPK4qdx90f_xonqux"
}, - "compatibility": true
}, - "updated_at": "2018-07-26T19:34:35.454Z",
- "template_updated_at": "2018-09-19T13:53:34.437Z",
}, - "master": {
- "configuration": {
- "compatibility": true,
- "video_cloud": {
- "policy_key": "BCpkADawqM1TW0eSP6AUwWK5gRTb0ZL-Wb4SYZkb5unfFMVjCU4NYtePkcJaxArVJpQS1sd4PTJ2HP4TOzY1H3Z-zOM7w9_9y0XzoSI_Xg3F0FTNkcNLPJUVlo4cVnyyPK4qdx90f_xonqux"
}, - "player": {
- "template": {
- "name": "single-video-template",
- "version": "6.24.1"
}
}
}, - "updated_at": "2018-07-26T19:34:35.476Z",
- "template_updated_at": "2018-09-19T13:53:39.568Z",
}
}, - "created_at": "2018-07-26T19:34:35.456Z",
- "embed_count": 1,
}
]
}
Create a player
Create a player. The POST method creates a player by submitting a player configuration. The properties of Brightcove Player you can manipulate with player management are detailed in the Request Body Fields section below. To create a player, a publisher must decide what properties the final player will have. If no properties are given at creation, a blank player will be created with only the base player skin applied to the player. A user may then use an HTTP PATCH method to update properties after the player has been created.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Request Body schema: application/json
Create a player
name | string A name for the player - avoid confusion by giving the player a name that will help convey what it should be used for |
description | string A description of the player - avoid confusion by giving the player a description that will help convey what it should be used for |
object (Player Configuration) Configuration for a player |
Responses
Request samples
- Payload
{- "name": "Test_Player",
- "description": "A test player for autoplay and video looping",
- "configuration": {
- "autoplay": "any",
- "loop": true,
- "video_cloud": {
- "video": "4093372393001"
}
}
}
Response samples
- 201
{- "id": "69EmV4W8r",
- "embed_code": "<iframe src='//players.brightcove.net/57838016001/69EmV4W8r_default/index.html' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>",
- "preview_embed_code": "<iframe src='//preview-players.brightcove.net/v2/accounts/57838016001/players/69EmV4W8r/preview/embeds/default/master/index.html' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>"
}
Get a single player
Get a player by ID
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "account_id": "1752604059001",
- "id": "default",
- "name": "Brightcove Default Player",
- "description": "This is an instance of the Brightcove Default Player. You can modify this or choose to create your own.",
- "branches": {
- "preview": {
- "configuration": {
- "player": {
- "template": {
- "version": "6.24.1",
- "name": "single-video-template"
}
}, - "video_cloud": {
- "policy_key": "BCpkADawqM1TW0eSP6AUwWK5gRTb0ZL-Wb4SYZkb5unfFMVjCU4NYtePkcJaxArVJpQS1sd4PTJ2HP4TOzY1H3Z-zOM7w9_9y0XzoSI_Xg3F0FTNkcNLPJUVlo4cVnyyPK4qdx90f_xonqux"
}, - "compatibility": true
}, - "updated_at": "2018-07-26T19:34:35.454Z",
- "template_updated_at": "2018-09-19T13:53:34.437Z",
}, - "master": {
- "configuration": {
- "compatibility": true,
- "video_cloud": {
- "policy_key": "BCpkADawqM1TW0eSP6AUwWK5gRTb0ZL-Wb4SYZkb5unfFMVjCU4NYtePkcJaxArVJpQS1sd4PTJ2HP4TOzY1H3Z-zOM7w9_9y0XzoSI_Xg3F0FTNkcNLPJUVlo4cVnyyPK4qdx90f_xonqux"
}, - "player": {
- "template": {
- "name": "single-video-template",
- "version": "6.24.1"
}
}
}, - "updated_at": "2018-07-26T19:34:35.476Z",
- "template_updated_at": "2018-09-19T13:53:39.568Z",
}
}, - "created_at": "2018-07-26T19:34:35.456Z",
- "embed_count": 1,
}
Update a player by ID
Update a single player. The PATCH method can be used on a single player to do a VERY limited update. The only fields you can update in this manner are the name
and description
properties. All other player configuration must be done via the PLAYER CONFIGURATIONS APIs, detailed below.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Request Body schema: application/json
Update the player
name | string The player name |
description | string The player description |
Responses
Request samples
- Payload
{- "name": "string",
- "description": "string"
}
Response samples
- 202
{- "id": "69EmV4W8r",
- "embed_code": "<iframe src='//players.brightcove.net/57838016001/69EmV4W8r_default/index.html' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>",
- "preview_embed_code": "<iframe src='//preview-players.brightcove.net/v2/accounts/57838016001/players/69EmV4W8r/preview/embeds/default/master/index.html' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>"
}
Delete a player by ID
Delete a player and all embeds associated with it.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "message": "Successfully deleted player with the id: 69EmV4W8r"
}
Publish a player
Publish a player for optimization and production use.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 201
{- "id": "SC5GzFPFkL",
- "embed_code": "<iframe src='//players.brightcove.net/57838016001/SC5GzFPFkL_default/index.html' allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>",
}
Get player configuration
Get a preview or published player configuration
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
branch required | string Enum: "master" "preview" A plugin id |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}
Update player configuration
Update a player configuration
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Request Body schema: application/json
Update a player configuration. Please note that all the parameters except for name
and description
must be inside a configuration
object
ad_config_id | string Default: "undefined" A Dynamic Delivery SSAI ad configuration ID. In addition to being set on the player configuration, it can be set at runtime via the adConfigId query string parameter for iframe players or the data-ad-config-id attribute for in-page players. Either of these will override any value in the player configuration. |
ad_failover | boolean Default: "undefined" Set to true to enable ad failover behavior. This is a multi-part configuration that depends on: |
application_id | string Default: "undefined" The application ID is used to differentiate multiple uses of a single player in metrics. It is invisible to the user. |
autoadvance | integer Default: "not enabled" Autoadvance setting if using playlists: 0 for no wait; a number for seconds between advance; null to cancel autoadvance |
boolean or string Default: false Indicates player should play video immediately, on platforms that allow this | |
object Object containing CSS color overrides | |
debugger | boolean If true, debugger shows player information in a modal window. See the Player Information Modal document for full information. |
errors | boolean Indicates if the error messages plugin should be excluded |
flash | object Can be used to provide custom Flash options to Video.js. |
fullscreenControl | boolean Indicates whether the fullscreen control should be shown in the control bar |
boolean or object Default: {} Handling of videojs-contrib-hls and renaming of 608 captions | |
language | string Default: "undefined" Can be provided to set the lang attribute of the |
languages | Array of strings Items Enum: "ar" "ba" "bg" "ca" "cs" "da" "de" "el" "en" "es" "fa" "fi" "fr" "gl" "he" "hr" "hu" "it" "ja" "ko" "nb" "nl" "nn" "pl" "pt-BR" "pt-PT" "ru" "sk" "sr" "sv" "tr" "uk" "vi" "zh-CN" "zh-TW" Languages (2 letter abbreviations) you wish your player to support, from the video.js supported list |
loop | boolean Default: false Indicates if the video should play over as soon as it ends |
object Media information for non-Video Cloud media | |
muted | boolean Default: false If |
object Properties are available for modification of the play button via player configuration | |
object General settings for the player | |
playsinline | boolean Default: false Allows inline playback (necessary for playback on some devices) |
Array of objects The | |
preload | string Default: "none" Enum: "auto" "metadata" "none" What data should be preloaded immediately - note that |
object Used to control the population of the global namespace (window) from query string parameters. This is useful particularly in cases of embedded players, such as Google's AMP components or Facebook Instant Articles. The parsing of query strings is done using the Node.js querystring module. Use of this configuration object requires at least one of the following sub-properties. Both can be used simultaneously. Supported for Standard (iframe) player implementations only. | |
repeat | boolean Default: false Will cause a playlist to repeat playing IF the player is a playlist player. Set at the top level of the player configuration. |
scripts | Array of strings Default: "none" The data type is an array of strings (URLs) referencing JavaScript files that are included with the player. At the time the player is built, these files will be downloaded and inlined into the resulting output so that they do not need to be subsequently fetched at runtime. Note: unless the script is for a registered plugin, you can not use it to interact with the player. |
skin | string Value: "graphite" Select the Brightcove Player 1.x skin instead of the Brightcove Player 5.x look. If you enable this option, you will also need to make sure Brightcove Player 1.x |
stylesheets | Array of strings Default: "none" The data type is an array of strings (URLs) referencing CSS files that are included with the player. At the time the player is built, these files will be downloaded and inlined into the resulting output so that they do not need to be subsequently fetched at runtime. Note: the stylesheets are included in the order you specify them. |
techOrder | Array of strings Default: ["html5","flash"] Items Enum: "html5" "flash" By default Brightcove Player performs tech-first ordering when it searches for a source/tech combination to play videos. This means that if you have two sources and two techs, the player will try to play each video with the first tech in the |
object With this property you can create a player using a video from your Video Cloud library and add a few more settings specific to Video Cloud. |
Responses
Request samples
- Payload
{- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "version": "6.22.7",
- "locked": false
}
}, - "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}
Response samples
- 200
{- "account_id": "string",
- "created_at": "string",
- "embeds_count": 0,
- "id": "string",
- "name": "string",
- "description": "string",
- "url": "string",
- "branches": {
- "preview": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}, - "master": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}
}
}
Get all plugins
Get all plugins
Authorizations:
query Parameters
template_version | string Limit results to plugins compatible with a specific player template version. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "versions": [
- {
- "scripts": [
- "//players.brightcove.net/videojs-ima3/3/videojs.ima3.min.js"
], - "stylesheets": [
- "//players.brightcove.net/videojs-ima3/3/videojs.ima3.min.css"
], - "version_number": "3.x",
- "minimum_template_version": "6.0.0"
}, - {
- "minimum_template_version": "5.0.0",
- "version_number": "2.x",
- "stylesheets": [
- "//players.brightcove.net/videojs-ima3/2/videojs.ima3.min.css"
], - "scripts": [
- "//players.brightcove.net/videojs-ima3/2/videojs.ima3.min.js"
]
}, - {
- "minimum_template_version": "1.14.0",
- "version_number": "1.x",
- "stylesheets": [
- "//players.brightcove.net/videojs-ima3/1/videojs.ima3.min.css"
], - "scripts": [
- "//players.brightcove.net/videojs-ima3/1/videojs.ima3.min.js"
]
}
], - "description": "Google Interactive Media Ads (IMA) v3 support for video.js",
- "id": "@brightcove/videojs-ima3",
- "name": "ima3",
- "current_version": "3.x"
}
Get a single plugin
Get a single plugin
Authorizations:
path Parameters
plugin_id required | string The plugin ID in the Plugin Registry. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "versions": [
- {
- "version_number": "string",
- "minimum_template_version": "string",
- "stylesheets": [
- "string"
], - "scripts": [
- "string"
]
}
], - "documentation": "string",
- "description": "string",
- "id": "string",
- "name": "string",
- "current_version": "string"
}
Get all the embeds for a player.
Get all the embeds (child players) for a player.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "items": [
- {
- "account_id": "string",
- "created_at": "string",
- "embeds_count": 0,
- "id": "string",
- "name": "string",
- "description": "string",
- "url": "string",
- "branches": {
- "preview": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": null
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}, - "master": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": null
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}
}
}
]
}
Create an embed
Create an embed (child player) for a player. Note that the initial creation of the embed is automatically published. Any changes to the embed thereafter will need to be published. When creating the embed, the body must be an object representing configuration settings for the new embed. By default when you create an embed, data in the embed overrides like data that would otherwise be inherited from the common player. This situation is different for fields that contain arrays. When the data type of the field is an array, you can choose the inheritance behavior to be overwrite, prepend or append. The fields whose data type is an array, and for which you can control inheritance behavior are: scripts, stylesheets, plugins, sources. You can add special field names to the configuration object to control array inheritance, and change the default behavior of embeds overriding common player data. If a array field in an embed's configuration has a child item called array_prepend or array_append the data will be correspondingly prepended or appended to the common player's data for the like field. See the Array fields section of the Embeds Guide for a complete discussion.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Request Body schema: application/json
Create a player
description | string A description of the player |
name | string The name of the player |
object (Player Configuration) Configuration for a player |
Responses
Request samples
- Payload
{- "description": "string",
- "name": "string",
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "version": "6.22.7",
- "locked": false
}
}, - "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}
}
Response samples
- 200
{- "id": "string",
- "url": "string",
- "embed_code": "string",
- "embed_in_page": "string",
- "preview_url": "string",
- "preview_embed_in_page": "string",
- "preview_embed_code": "string"
}
Get a specific embed for a player.
Get a specific embed (child player) for a player.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
embed_id required | string The embed id. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "account_id": "string",
- "created_at": "string",
- "embeds_count": 0,
- "id": "string",
- "name": "string",
- "description": "string",
- "url": "string",
- "branches": {
- "preview": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}, - "master": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}
}
}
Delete an embed
Delete a particular embed (child player) for a player.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
embed_id required | string The embed id. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "message": "string"
}
Get player embed configuration
Get the configuration for an embed. You must specify the branch, either master
or preview
.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
embed_id required | string The embed id. |
branch required | string Enum: "master" "preview" A plugin id |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}
Update embed configuration
Update the configuration for an embed. Note that you will need to publish the altered embed for optimization and production use. You can also use a PUT
HTTP method instead of the PATCH
shown here. When using PUT
it replaces all embed configuration information, so you must supply all embed configuration information when using PUT
. In contrast, PATCH
appends or modifies existing configuration information. Using PUT
is such rare use case it is not detailed in this reference.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
embed_id required | string The embed id. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "preview_url": "string",
- "preview_embed_in_page": "string"
}
Get Configuration Combinations
Retrieve the configuration for a parent/child combination of master and preview branches. If you are using the second query parameter (and hence using the ampersand [&]), you MUST use quotes around the endpoint or the curl statement will fail at the ampersand. For example:
"https://players.api.brightcove.com/v1/accounts/{account_id}/players/{player_id}/embeds/{embed_id}/configuration/merged?playerBranch=preview&embedBranch=master"
.
Using this endpoint provides a way to view what the resulting configuration would be when combining different combinations of parent and child (also called embed) versions of players. Using this endpoint does not change any configurations, it is only useful for seeing results of merging changes to configurations.
Authorizations:
path Parameters
account_id required | string Video Cloud account ID. |
player_id required | string Brightcove Player ID. |
embed_id required | string The embed id. |
query Parameters
playerBranch | string Enum: "master" "preview" The (master) player branch to use. |
embedBranch | string Enum: "master" "preview" The embed (child player) branch to use. |
header Parameters
Content-Type required | string Example: application/json Content-Type: application/json |
Authorization required | string There are two ways to authenticate requests to the Player Management API. The first is more secure and recommended. The second (Basic) authorization method should only be used for testing, and never in a production app.
|
Responses
Response samples
- 200
{- "account_id": "string",
- "created_at": "string",
- "embeds_count": 0,
- "id": "string",
- "name": "string",
- "description": "string",
- "url": "string",
- "branches": {
- "preview": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}, - "master": {
- "configuration": {
- "ad_config_id": "undefined",
- "ad_failover": "undefined",
- "application_id": "undefined",
- "autoadvance": "not enabled",
- "autoplay": false,
- "compatibility": true,
- "crossorigin": true,
- "css": {
- "controlBarColor": "{set by player template}",
- "controlColor": "{set by player template}",
- "progressColor": "{set by player template}"
}, - "debugger": true,
- "errors": true,
- "flash": { },
- "fullscreenControl": true,
- "hls": { },
- "language": "undefined",
- "languages": [
- "ar"
], - "loop": false,
- "media": {
- "sources": [
- {
- "height": 0,
- "width": 0,
- "poster": {
- "highres": "string"
}, - "src": "string",
- "title": "string",
- "type": "video/mp4"
}
], - "src": "string",
- "tracks": [
- {
- "label": "string",
- "src": "string",
- "srclang": "string"
}
]
}, - "muted": false,
- "play_button": {
- "hover": "glow",
- "shape": "square",
- "position": "topLeft"
}, - "player": {
- "inactive": true,
- "template": {
- "name": "string",
- "version": "6.22.7",
- "locked": false
}
}, - "player_id": "string",
- "player_name": "string",
- "playsinline": false,
- "plugins": [
- {
- "name": "string",
- "options": { },
- "registry_id": "@brightcove/videojs-custom-endscreen",
- "version": "@brightcove/videojs-custom-endscreen"
}
], - "preload": "auto",
- "query_string_to_window": {
- "target": "string",
- "globals": [
- "string"
]
}, - "repeat": false,
- "scripts": "none",
- "skin": "graphite",
- "stylesheets": "none",
- "techOrder": [
- "html5",
- "flash"
], - "video_cloud": {
- "aspect_ratio_width": "630",
- "aspect_ratio_height": "300",
- "max_retry": 3,
- "interval_retry": 60000,
- "policy_key": "{the key automatically assigned}",
- "poster_image_url": "{the key automatically assigned}",
- "thumbnail_image_url": "{the key automatically assigned}",
- "video": "undefined"
}
}, - "updated_at": "string",
- "template_updated_at": "string",
- "preview_url": "string"
}
}
}