Player API
Create a player theme
This endpoint is used to create a player for your video, and customize it.
Note:
main_color
,text_color
,control_bar_background_color
,menu_item_background_hover
,text_track_color
,text_track_background
, andmenu_background_color
must be provided inrgba
format (e.g.,rgba(255, 0, 0, 1)
).control_bar_height
,progress_bar_height
, andprogress_bar_circle_size
must be provided inpx
format (e.g.,20px
).- When creating a player, the
is_default
field is set tofalse
by default. You can update this field totrue
using the API update endpoint.
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/players' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <YOUR_JWT_TOKEN>' \
--data '{
"name": "your player name",
"theme": {
"main_color": "string",
"text_color": "string",
"control_bar_background_color": "string",
"menu_background_color": "string",
"menu_item_background_hover": "string",
"text_track_color": "string",
"text_track_background": "string",
"control_bar_height": "string",
"progress_bar_height": "string",
"progress_bar_circle_size": "string"
}
}'
List all player themes
Retrieve a list of all the player themes you created, as well as details about each one.
Query
Headers
Response
curl --location 'https://api.aiozstream.network/api/players' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--data ''
Delete player theme
Delete a player if you no longer need it. You can delete any player that you have the player ID for. Notice if player is used in any video, it will not be deleted
Parameters
Headers
Response
curl --location --request DELETE 'https://api.aiozstream.network/api/players/{player_theme_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--data ''
Retrieve a player theme
Retreive a player theme by player id.
Parameters
Headers
Response
curl --location 'https://api.aiozstream.network/api/players/{player_theme_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--data ''
Update a player theme
Use a player ID to update specific details for a player. NOTE: It may take up to 10 min before the new player configuration is available from our CDN. This endpoint is used to Create a player for your video, and customise it.
Note:
- Setting a new player as
is_default: true
will automatically set all other players'is_default
field tofalse
.
Parameters
Headers
Body
Response
curl --location --request PATCH 'https://api.aiozstream.network/api/players/{player_theme_id}' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"theme": {
"main_color": "string",
"text_color": "string",
"control_bar_background_color": "string",
"menu_background_color": "string",
"menu_item_background_hover": "string",
"text_track_color": "string",
"text_track_background": "string",
"control_bar_height": "string",
"progress_bar_height": "string",
"progress_bar_circle_size": "string"
},
"controls": {
"enable_api": false,
"enable_controls": true,
"force_autoplay": true,
"hide_title": false,
"force_loop": false
},
"is_default": true
}'
Upload logo for player theme
Upload an image file as a logo for your player. The image should fit within these constraints:
- The image mime type must be image/jpeg or image/png. Recommends using png images with transparent background.
- The file size should be a maximum of 100 KiB.
- The image size should be a maximum of 200px width x 100px.
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/players/{player_theme_id}/logo' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--form 'link="https://google.com/"' \
--form 'file=@"/path_to_your_image"'
Delete a logo for player theme
Delete the logo associated to a player.
Parameters
Headers
Response
curl --location --request DELETE 'https://api.aiozstream.network/api/players/{logo_id}/logo' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--data ''
Add player theme to video
Add a player theme to a video. You can add a player theme to a video by providing the player theme ID and the video ID.
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/players/add-player' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"video_id": "string",
"player_theme_id": "string"
}'