Skip to main content

POST Custom Screen

Overview


The table below provides key details about the POST method to create a new Custom Screen.

POST Custom Screen
MethodPOST
URL or Endpoint/api/v1/projectId/custom-screens
HeadersAuthorization
ParametersprojectId
Request BodyType, SourcePath, File, VideoId, Thumbnail

The description of the URL parameter is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

Request Body

The description of the body parameters is as follows:

Parameter NameMandatoryTypeDescription
TypeYesinteger($int32)Specifies the type of custom screen.
SourcePathNostringIndicates the path where the source file is located.
FileYesstring($binary)URL of the custom screen file being uploaded.
VideoIdYesstringUnique identifier of the video to which the custom screen will be associated.
ThumbnailNostring($binary)URL of the thumbnail image for the custom screen.

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": "{chnnelId}",
"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