DOCUMENTATION

Change a Device’s Playlist

Web App API Calls

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_id": "DEVICE_ID_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|Tazc1INPh1ftqDWpI9bJUbugyuVzkvwNZaipp4yK367322f6' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{
    "device_id": "bfd59430-be44-11ef-988a-c1437d0507e8",
    "playlist_id": "aa2533e0-be48-11ef-b32f-29af289bb0a6"
  }'