View schedule information
- Print
- PDF
View schedule information
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Live Station provides an API to view details about the VOD channel.
Requests
GET https://livestation.apigw.ntruss.com/api/v2/vod/schedule/{scheduleId}
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 longerx-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} |
x-ncp-region_code | YES | Region code (KR) |
Responses
Field name | Type | Description | Note |
---|---|---|---|
scheduleId | Integer | ||
channelId | String | Scheduled VOD Channel ID | |
createdTime | Timestamp | Schedule creation time (epoch time) | |
startTime | Timestamp | Start time for the first video to be streamed (epoch time) | |
endTime | Timestamp | Estimated end time of the streaming (epoch time) | |
updatedTime | Timestamp | ||
status | String | Schedule status | CREATING,PROCESSING,PROCESSING_FAIL,UPDATING,READY,FINISH,DELETED |
vodList | Array |
Examples
Request examples
GET /api/v2/vod/schedule/10060
HOST: livestation.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-timestamp:1521787414578
x-ncp-iam-access-key:6uxz1nKkcYwUjWRG5Q1V7NsW0i5jErlu2NjBXXgy
x-ncp-apigw-signature-v2:iJFK773KH0WwQ79PasqJ+ZGixtpDQ/abS57WGQdld2M=
x-ncp-region_code:KR
Response examples
{
"content": {
"scheduleId": 10060,
"channelId": "ls-20211124000316-5RrSB",
"createdTime": 1637768753000,
"startTime": 1637736301000,
"endTime": 1637739780000,
"updatedTime": 1637736353000,
"status": "READY",
"vodList": [
"/mp4/myFile2.mp4"
]
}
}
Was this article helpful?