/api/cuesheets/list
Param |
Required |
Description |
user_id |
no |
Retrieve only this user’s cuesheets |
since |
no |
Unix timestamp (seconds) to get cuesheets since |
Example Response
[ { "sheet_id": 5087, "user_id": 212, "username": "Brent Phillips", "trackCount": 837, "dateCreated": 1439477575, "dateModified": 1483039705, "title": "Moon Travel Ad" }, ]
|
Once you’ve found the cuesheet you want, use the below action to get its contents.
/api/cuesheets/get
Param |
Required |
Description |
cuesheet_id |
yes |
The cuesheet you wish to retrieve |
Example Response
{ "id": 1537, "title": "LT Promo Final", "dateCreated": 1398291850, "dateModified": 1539117793, "sheetFields": { "Project": "Love Triangle Promo", "Air Date": "2018/2/14" }, "cues": [ { "date": 1398292074, "track": {TrackObject}, "fields": { "Artist": "Brent Phillips", "Title": "Boomcast", "Catalog": "Brentracks", "Composer": "Brent Phillips", "Time In": 12, "Time Out": 22, "Duration": 10 } }, ] }
|