Available in Classic and VPC
Force end a live curtain streaming in progress.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
POST | /api/v2/channels/{channelId}/curtain/remove |
Request headers
For information about the headers common to all Live Station APIs, see Live Station request headers.
Request path parameters
You can use the following path parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
channelId |
String | Required | Channel ID
|
Request example
The request example is as follows:
curl --location --request POST 'https://livestation.apigw.ntruss.com/api/v2/channels/ls-20250814******-zTwK2/curtain/remove' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'x-ncp-region_code: KR' \
--header 'Content-Type: application/json'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
content |
Object | - | Response result |
content.content |
Object | - | Live curtain information |
content.content.ids |
Array | - | Content ID list |
content.content.insertTime |
Integer | - | Live curtain retention time (minute) |
content.content.responseTime |
Integer | - | Response time (millisecond)
|
content.channelId |
String | - | Channel ID |
content.isLiveCurtain |
Boolean | - | Whether live curtain is on
|
Response status codes
For information about the HTTP status codes common to all Live Station APIs, see Live Station response status codes.
Response example
The response example is as follows:
{
"content": {
"content": {
"ids": [
414
],
"insertTime": 10,
"responseTime": 1755586043299
},
"channelId": "ls-20250814******-zTwK2",
"isLiveCurtain": false
}
}