SysDeleteStream
Delete a playback stream.
Service | Operation |
---|---|
playbackStream | SYS_DELETE_STREAM |
Method Parameters
Parameter | Description |
---|---|
profileId | The player deleting the stream. |
playbackStreamId | Identifies the stream to delete. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
var profileId = "player";
var playbackStreamId = "stream";
var playbackStreamProxy = bridge.getPlaybackStreamServiceProxy();
var postResult = playbackStreamProxy.sysDeleteStream(profileId, playbackStreamId);
{
"service":"playbackStream",
"operation":"SYS_DELETE_STREAM",
"data":{
"profileId":"player",
"playbackStreamId":"stream"
}
}
JSON Response
{
"status": 200,
"data": null
}