Add a DME
This endpoint adds a new DME to Rev.
POST
/api/v2/devices/dmes
Request Body
application/json
{
"name": "myDME",
"macAddress": "000C29A41000",
"isActive": true,
"prepositionContent": true,
"isVideoStorageDevice": true,
"manualVideoStreams": [
"name": "myVideoStream",
"url": "http://myexample.com",
"encodingType": "hls",
"isMulticast": false
],
"videoStreamsGroupsToAdd": [
"name": "myVideoStreamGroup",
"hasHls": false
]
}
Request Parameters
| Name | Type | Description |
|---|---|---|
| name | string, required | DME device name |
| macAddress | string, required | MAC address for the DME. Must be unique to the Rev account. |
| isActive | string, optional | true / false Defaults to false |
| prepositionContent | string, optional | true / false Defaults to false |
| isVideoStorageDevice | string, optional | true / false Defaults to false |
| manualVideoStreams [ ] | object, optional |
|
| VideoStreamsGroupsToAdd [ ] | object, optional |
|