Skip to main content

GET Live Video Custom Screens

Overview


The table below provides key details about the Get method to receive Custom Screens for a specific Live Video.

GET Live Video Custom Screen
MethodGET
URL or Endpoint/api/v1/projectId/live-video/videoId/custom-screens
HeadersAuthorization
ParametersvideoId, projectId

The description of the URL parameter is as follows:

videoId URL Parameter
URL Parameter NamevideoId
MandatoryYes
Typestring
DescriptionUnique Id of the live video.
projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

Request Body

The request does not contain the request body.

Response

{
"success": true,
"errors": [],
"messages": [],
"result": [
{
"id": 593,
"type": 1,
"typeName": "Prelive",
"source": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"sourcePath": "live-videos/{videoId}/default-screens/{customScreen}.jpg",
"mimeType": null,
"videoId": "{videoId}",
"playBackUrl": "",
"thumbnailUrl": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"channelId": "{channelId}",
"projectId": null
},
{
"id": 594,
"type": 2,
"typeName": "End",
"source": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"sourcePath": "live-videos/{videoId}/default-screens/{customScreen}.jpg",
"mimeType": null,
"videoId": "{videoId}",
"playBackUrl": "",
"thumbnailUrl": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"channelId": "{channelId}",
"projectId": null
},
{
"id": 595,
"type": 3,
"typeName": "Pause",
"source": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"sourcePath": "live-videos/{videoId}/default-screens/{customScreen}.jpg",
"mimeType": null,
"videoId": "{videoId}",
"playBackUrl": "",
"thumbnailUrl": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.jpg",
"channelId": "{channelId}",
"projectId": null
},
{
"id": 596,
"type": 4,
"typeName": "Problem",
"source": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}.mp4",
"sourcePath": "live-videos/{videoId}/default-screens/{customScreen}.mp4",
"mimeType": null,
"videoId": "{videoId}",
"playBackUrl": "",
"thumbnailUrl": "https://cdn.vpplayer.tech/{projectId}/live-videos/{videoId}/default-screens/{customScreen}",
"channelId": "{channelId}",
"projectId": null
}
],
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false.
errorsarray[]Indicates if there was an error.
messagesarray[]Returns the response message from back-end.
resultarray[Object]Returns the response object.
idinteger($int32)Returns the unique identifier for the custom screen
typeinteger($int32)Specifies the type of the custom screen.
typeNamestringName of the type for the custom screen
sourcestringThe URL to access the custom screen image
sourcePathstring($binary)The relative path of the source file within the storage system
mimeTypestringThe mime type of the custom screen.
videoIdstringThe unique identifier of the video associated with the custom screen
playbackUrlstringThe URL for the playback of the video
thumbnailUrlstringThe URL to access the thumbnail image of the custom screen
channelIdstringThe unique identifier of the channel associated with the custom screen.
projectIdstringThe unique identifier of the project associated with the custom screen.
resultInfostringReturns extra information about the result.
statusCodeinteger($int32)Returns the HTTP Status Code.

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed