API URL (POST)
https://app.retrieverdigitalsignage.com/api/device/change-playlist
Authorization Header
Bearer TOKEN_HERE
(Example: Bearer 1|Tazc1INPh1ftqDWpI9bJUbugyuVzkvwNZaipp4yK367322f6)
Other Headers
Content-Type: application/json
Accept: application/json
Body (raw JSON)
{
"device_ids": ["DEVICE_ID_HERE","DEVICE_ID_2_HERE"],
"playlist_id": "PLAYLIST_ID_HERE"
}
Example call using CURL
curl -X POST \
'https://app.retrieverdigitalsignage.com/api/device/change-playlist' \
-H 'Authorization: Bearer 1|Tazc1IMPh1ftqDWpI9bJUbugyuVqkvwNZaipp4yK357422f6' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"device_ids": [
"bfd59130-be44-11ef-988a-c1e37a0507e8",
"9fec4290-f087-11ef-89c4-75f7fba2c335",
"ab29b340-4a9a-11ef-9121-eb04fcae9bda"
],
"playlist_id": "ab2543e0-be48-17ec-b32f-29ab249ff0a6"
}'