View Live Curtain content list
- Print
- PDF
View Live Curtain content list
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
An API to view Live Curtain content list of Live Station. Provides the Live Curtain content list view API to view the created Live Curtain content list.
Requests
GET https://livestation.apigw.ntruss.com/api/v2/curtainContents?pageNo={pageNo}&pageSizeNo={pageSizeNo}&status={status}
Request parameters
Parameter name | Required | Type | Service limits | Description |
---|---|---|---|---|
pageNo | No | Integer | Page index to view | |
pageSizeNo | No | Integer | - Number of Live Curtain content to be included when viewing list - <example> If the number of Live Curtain content created is 60 and pageSizeNo is 30, 30 live content can be viewed on each page | |
status | No | String | CREATING,READY,PROCESSING_FAIL,DELETED | Status of Live Curtain content viewed |
Request headers
Header name | Required | Description |
---|---|---|
x-ncp-apigw-timestamp | YES | - Time elapsed since January 1, 1970 00:00:00 UTC in milliseconds - The request is considered invalid if the time difference compared to the API Gateway server is 5 minutes or longer x-ncp-apigw-timestamp:{Timestamp} |
x-ncp-iam-access-key | YES | Access key ID value issued from NAVER Cloud Platform portalx-ncp-iam-access-key:{Sub Account Access Key} |
x-ncp-apigw-signature-v2 | YES | Signature encrypted with the access key ID value and secret keyx-ncp-apigw-signature-v2:{API Gateway Signature} |
Content-Type | YES | Specifies the request body content type as application/jsonContent-Type: application/json |
x-ncp-region_code | YES | Region code (KR) |
Responses
Field name | Type | Description | Note |
---|---|---|---|
content | Array | Live Curtain content object | |
content.id | Integer | Live Curtain content ID | |
content.registerTime | Timestamp | Time of request for Live Curtain content creation | |
content.updatedTime | Timestamp | Live Curtain content update time | |
content.status | String | Status of Live Curtain content | CREATING,READY,PROCESSING_FAIL,DELETED |
content.fileSize | Integer | Live Curtain content file size | |
content.fileDuration | Integer | Time at which Live Curtain content file is played | |
content.input | Array | Object storage path (bucketName/filePath) of content to be created as Live Curtain content |
Examples
Response examples
HTTP/1.1 200 OK
Server: nginx
Date: Fri, 26 Jun 2022 09:53:32 GMT
Content-Type: application/json;charset=utf-8
Connection: keep-alive
Access-Control-Allow-Origin: *
x-ncp-trace-id: 36c9k60om4p3238cpmc9gm4cj4
{
"content": [
{
"id": 1162,
"registerTime": 1658225926965,
"updatedTime": 1658225931573,
"status": "READY",
"fileSize": 23008143,
"fileDuration": 218,
"input": [
"myTestBucket/testVideo2.mp4"
]
},
{
"id": 1139,
"registerTime": 1658208489448,
"updatedTime": 1658208563439,
"status": "READY",
"fileSize": 1722965,
"fileDuration": 300,
"input": [
"myTestBucket/testVideo.mp4"
]
},
{
"id": 1136,
"registerTime": 1658198150226,
"updatedTime": 1658198225486,
"status": "READY",
"fileSize": 893037,
"fileDuration": 300,
"input": [
"myTestBucket/testImage.jpeg"
]
},
{
"id": 1030,
"registerTime": 1657789812947,
"updatedTime": 1657789895469,
"status": "READY",
"fileSize": 15836052,
"fileDuration": 300,
"input": [
"myTestBucket/testImage.png"
]
}
],
"total": 4
}
Was this article helpful?