Available in Classic and VPC
Register callback endpoint that will receive event notifications for a re-stream channel.
For information on callback delivery data and delivery actions, see Register callback endpoint.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
POST | /api/v2/re-stream/channels/{channelId}/callbackEndpoint |
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 body
You can include the following data in the body of your request:
Field | Type | Required | Description |
---|---|---|---|
callbackEndpoint |
String | Required | Callback endpoint URL |
Request example
The request example is as follows:
curl --location --request POST 'https://livestation.apigw.ntruss.com/api/v2/re-stream/channels/ls-20250826******-172v4/callbackEndpoint' \
--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' \
--data '{
"callbackEndpoint": "https://www.callback-endpoint.com"
}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Field | Type | Required | Description |
---|---|---|---|
content |
Object | - | Channel information |
content.channelId |
String | - | Channel ID |
content.channelName |
String | - | Channel name |
content.instanceNo |
Integer | - | Channel instance number |
content.channelStatus |
String | - | Channel status
|
content.streamKey |
String | - | Stream key |
content.publishUrl |
String | - | Default transmission URL |
content.globalPublishUrl |
String | - | Overseas streaming URL |
content.planType |
String | - | Pricing plan type
|
content.createdTime |
Integer | - | Channel creation date and time (millisecond)
|
content.restream |
Array | - | Re-stream platform information: restream |
content.platformCount |
Integer | - | Re-stream platform count |
content.totalPublishSeconds |
Integer | - | Channel usage time (second) |
content.alertOn |
Boolean | - | Event notification settings
|
content.isPublishing |
Boolean | - | Streaming status
|
content.alertOptions |
Object | - | Set event notifications. |
content.alertOptions.alertChangeStatus |
Boolean | - | Re-stream channel status change notification application
|
content.alertOptions.alertVodUploadFail |
Boolean | - | Recording file upload failure notification application
|
content.alertOptions.alertReStreamFail |
Boolean | - | Re-stream relay failure notification application
|
content.alertOptions.reStreamFailThreshold |
Integer | - | Notification occurrence condition (base count)
|
content.alertOptions.alertStreamFailOver |
Boolean | - | Main stream switch notification application
|
content.callbackEndpoint |
String | - | Callback endpoint URL |
content.envType |
String | - | Channel type
|
restream
The following describes restream
.
Field | Type | Required | Description |
---|---|---|---|
id |
String | - | RTMP authentication ID
|
rtmpUrl |
String | - | Re-stream platform RTMP URL |
streamKey |
String | - | Re-stream platform stream key |
password |
String | - | RTMP authentication password
|
targetName |
String | - | Re-stream platform name |
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": {
"channelId": "ls-20250826******-172v4",
"channelName": "nat",
"instanceNo": 10*****75,
"channelStatus": "READY",
"streamKey": "tkhimahll***********************",
"publishUrl": "rtmp://***********.video.media.ntruss.com:8080/relay",
"globalPublishUrl": "rtmp://***************.video.media.ntruss.com:8080/relay",
"planType": "STANDARD",
"createdTime": 1756175988000,
"restream": [
{
"id": "user002",
"rtmpUrl": "rtmp://rtmp-test1234.youtube.com",
"streamKey": "*************",
"password": "q*****",
"targetName": "YOUTUBE"
}
],
"platformCount": 1,
"totalPublishSeconds": 0,
"alertOn": false,
"isPublishing": false,
"alertOptions": {
"alertChangeStatus": false,
"alertVodUploadFail": false,
"alertReStreamFail": false,
"alertStreamFailOver": false
},
"callbackEndpoint": "https://www.callback-endpoint.com",
"envType": "REAL"
}
}