This will revert a device’s playlist to the last playlist that it was set to through the web app UI.
API URL (POST)
https://app.retrieverdigitalsignage.com/api/device/revert-playlist-change
Authorization Header
Bearer TOKEN_HERE
(Example: Bearer 1|Tazc1INPh1ftqDWpI9bJUbugyuVzkvwNZaipp4yK367322f6)
Other Headers
Content-Type: application/json
Accept: application/json
Body (raw JSON)
{
"device_id": "DEVICE_ID_HERE",
}
Example call using CURL
curl -X POST \
'https://app.retrieverdigitalsignage.com/api/device/revert-playlist-change' \
-H 'Authorization: Bearer 1|Tazc1IMPh1ftqDWpI9bJUbugyuVqkvwNZaipp4yK357422f6' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"device_id": "bfd58431-be44-10af-988a-c1457e1507e8",
}'