Register a playback device under an account.
If a device with the same id already exists a 409 conflict will be returned.
643 matches
100 actions
Rocket Services
100 actions
Other/Rocket Services
Register a playback device under an account.
If a device with the same id already exists a 409 conflict will be returned.
{
"type": "object",
"properties": {
"ff": {
"type": "array",
"items": {
"type": "string",
"enum": [
"all",
"idp",
"ldp",
"hb",
"rpt",
"cas",
"lrl",
"cd"
]
}
},
"id": {
"type": "string",
"description": "The unique identifier for this device e.g. serial number."
},
"lang": {
"type": "string"
},
"name": {
"type": "string",
"description": "A human recognisable name for this device."
},
"type": {
"type": "string",
"description": "The device type e.g. web_browser."
}
},
"required": [
"id",
"name",
"type"
],
"additionalProperties": false
}{
"type": "object",
"required": [
"id",
"name",
"registrationDate",
"type"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for this device e.g. serial number."
},
"name": {
"type": "string",
"description": "The human recognisable name for this device."
},
"registrationDate": {
"type": "string",
"format": "date-time",
"description": "The date this device was registered."
},
"type": {
"type": "string",
"description": "The device type e.g. web_browser."
}
},
"additionalProperties": false
}