Gets a stream by stream path
POST /v1/device/{deviceID}/stream/path
Summary
Gets a stream by stream path.
Details
Request body: JSON object with the stream path in value.
Authentication
No operation-level security requirement is documented here.
Parameters
| Name | In | Type | Required | Description | Example |
|---|---|---|---|---|---|
| deviceID | path | integer (int64) | Yes | The ID of the device that owns the stream. | 1 |
Request Body
Required: Yes
application/json
value(string, optional)
Example
{
"value": "Example value"
}
Responses
200
Success
application/json
key(integer (int64), optional)deviceID(integer (int64), optional)streamTypeID(integer (int64), optional)eventID(integer (int64), optional)streamName(string, optional)streamPath(string, optional)streamDescription(string, optional)publishURL(string, optional)readURL(string, optional)lastActivityDate(string (date-time), optional)actionTypeID(integer (int64), optional)creationDate(string (date-time), optional)
Example
{
"key": 401,
"deviceID": 201,
"streamTypeID": 1,
"eventID": 501,
"streamName": "SendSRT",
"streamPath": "sendsrt-wearabledevice",
"streamDescription": "Example description",
"publishURL": "srt://media.actionstreamer.com:8890?streamid=publish:sendsrt-wearabledevice",
"readURL": "https://media.actionstreamer.com/webrtc/sendsrt-wearabledevice",
"lastActivityDate": "2026-03-30T12:00:00.0000000Z",
"actionTypeID": 1,
"creationDate": "2026-03-30T12:00:00.0000000Z"
}