This returns a list of playlists in the organizations that the authenticated user is a part of. Optionally, a specific organization ID can be provided to only return the list of playlists for that organization.
API URL (GET)
https://app.retrieverdigitalsignage.com/api/user/get-playlists
Authorization Header
Bearer TOKEN_HERE
(Example: Bearer 1|Tazc1INPh1ftqDWpI9bJUbugyuVzkvwNZaipp4yK367322f6)
Other Headers
Accept: application/json
URL Parameters (Optional)
Use this optional parameter to only return the list of playlists for a specific organization ID.
?organization_id=e8e3f3a0-03d3-11ef-bd14-ef27eae01ca4
Example call using CURL
curl -X GET \
'https://app.retrieverdigitalsignage.com/api/user/get-playlists?organization_id=e8e3f3a0-03d3-11ef-bd14-ef27eae01ca4' \
-H 'Authorization: Bearer 1|Tazc1INPh1ftqDWpI9bJUbugyuVzkvwNZaipp4yK367322f6' \
-H 'Accept: application/json' \