Folders are used to organise digital signage content, including media, playlists and schedules, for easier management.
Returns an object containing a list of folders and permissions for root folders.
{- "folders": [
- {
- "id": 0,
- "name": "string",
- "type": "STANDARD",
- "parentId": 0,
- "assetCount": 0,
- "sortSequence": 0,
- "permissions": {
- "create": true,
- "read": true,
- "update": true,
- "delete": true
}
}
], - "rootPermissions": {
- "create": true
}
}| name required | string [ 1 .. 250 ] characters |
| parentId | number or null Leave null to create a root folder. |
| sortSequence | number A comparable number representing the sortable sequence of this folder relative to its siblings. Does not need to be in a precise incremental order - e.g. 1, 2, 3 or 1, 10, 100 will be accepted. If this matches the sort sequence of a sibling, then siblings will be shifted to achieve the desired sort order. There is no guarantee that the value you provide will be used exactly as-is. |
{- "name": "string",
- "parentId": 0,
- "sortSequence": 0
}{- "id": 0,
- "name": "string"
}| id required | number |
| name | string [ 1 .. 250 ] characters |
| parentId | number or null Leave null to create a root folder. |
| sortSequence | number A comparable number representing the sortable sequence of this folder relative to its siblings. Does not need to be in a precise incremental order - e.g. 1, 2, 3 or 1, 10, 100 will be accepted. If this matches the sort sequence of a sibling, then siblings will be shifted to achieve the desired sort order. There is no guarantee that the value you provide will be used exactly as-is. |
{- "name": "string",
- "parentId": 0,
- "sortSequence": 0
}{- "id": 0,
- "name": "string"
}Assets provide a unified, high-level representation of all supported digital signage content, such as media, playlists and schedules.
This API is intended to be used to build folder-based views of
signage content. It will return any content that can be assigned
to a folder. You can use the content-specific APIs (such as
/playlists and /media) and aggregate the content yourself if
you prefer.
| folderId required | number |
| type | string Enum: "PLAYLIST" "SCHEDULE" "MEDIA" |
| offset required | number Default: 0 |
| limit required | number Default: 10 |
| sort | string^[A-Za-z0-9_.]+:(asc|desc)$ Examples:
Optional sort in the format |
{- "total": 0,
- "offset": 0,
- "limit": 0,
- "data": [
- {
- "type": "PLAYLIST",
- "status": "CREATED",
- "durationInSeconds": 0,
- "dimensions": {
- "width": 0,
- "height": 0
}, - "thumbnail": {
- "url": "string"
}, - "id": 0,
- "name": "string",
- "companyId": 0,
- "folder": {
- "id": 0,
- "name": "string"
}, - "lastUpdated": "2019-08-24T14:15:22Z"
}
]
}This API is a convenience API to move assets between folders.
You can use the content-specific APIs (such as /playlists/:id and
/media/:id) and move the assets directly if you prefer.
| folderId required | number The destination folder id to move the assets to. |
required | Array of objects (MinimalAsset) non-empty The assets to move. |
{- "folderId": 0,
- "assets": [
- {
- "id": 0,
- "type": "PLAYLIST"
}
]
}{- "id": 0,
- "name": "string"
}This API is a convenience API to delete assets.
You can use the content-specific APIs (such as /playlists/:id and
/media/:id) and delete the assets directly if you prefer.
required | Array of objects (MinimalAsset) non-empty The assets to delete. | ||||
Array (non-empty)
| |||||
{- "assets": [
- {
- "id": 0,
- "type": "PLAYLIST"
}
]
}Media represents visual content such as images, videos, web pages and dynamic templates that can be added to playlists.
WebsiteOptions (object) or PowerBiOptions (object) or TableauOptions (object) or DesignOptions (object) or WidgetOptions (object) Specific options related to the media type. | |
required | object The origin of the media item. This includes the type of media and where it is located. |
| name required | string <= 150 characters The publicly visible name of the media item. This could be the file name or a human-readable name. |
| folderId required | number The folder to store the media item in. |
{- "options": {
- "cookie": "cookieName=cookieValue"
}, - "name": "string",
- "folderId": 0
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}
}| folderId | number |
| mediaType | string Enum: "IMAGE" "VIDEO" "WIDGET" "WEBSITE" "POWER_BI" "TABLEAU" "DESIGN" "ZONE" |
| offset required | number Default: 0 |
| limit required | number Default: 10 |
| sort | string^[A-Za-z0-9_.]+:(asc|desc)$ Examples:
Optional sort in the format |
{- "total": 0,
- "offset": 0,
- "limit": 0,
- "data": [
- {
- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}, - "status": "CREATED",
- "options": { },
- "thumbnail": {
- "url": "string"
}, - "durationInSeconds": 0,
- "dimensions": {
- "width": 0,
- "height": 0
}, - "created": "2019-08-24T14:15:22Z"
}
]
}Prepares and returns an upload URL that can be used to upload a
file. Only use this for media items that have a PROVIDED source.
Clients must PUT the file against the returned URL.
| id required | number |
{- "uploadUrl": "string"
}| id required | number |
| name | string <= 150 characters |
| folderId | number The folder to move the media item to. |
{- "name": "string",
- "folderId": 0
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}, - "status": "CREATED",
- "options": { },
- "thumbnail": {
- "url": "string"
}, - "durationInSeconds": 0,
- "dimensions": {
- "width": 0,
- "height": 0
}, - "created": "2019-08-24T14:15:22Z"
}This will return file metadata about the media file(s) we have created as a result of processing your media uploads. Your uploaded media is converted into formats suitable for digital signage, so we may have more than one representation of your media. The files can be downloaded using the URL of each file.
| id required | number |
[
]Playlists are collections of media items with specific playback settings. Playlists are used to deploy content to screens.
required | Array of MediaPlaylistItemRequestDTO (object) or SubPlaylistPlaylistItemRequestDTO (object) The items to play in this playlist. These can be media items or another playlist. The order of items in this list determines the order they will be played. |
| name required | string <= 150 characters The name of the playlist that provides context for the content or details about its purpose. |
| folderId required | number The folder to store playlist in. |
object An optional overlay to apply to the playlist. The configured media will overlay the entire playlist. Use this to display logos, clocks, tickers throughout your entire playlist. |
{- "items": [
- {
- "type": "MEDIA",
- "mediaId": 0,
- "durationInSeconds": 0,
- "enabled": true,
- "options": {
- "rules": {
- "conditions": [
- { }
], - "type": "AND"
}, - "fitSetting": "FIT"
}
}
], - "name": "string",
- "folderId": 0,
- "overlay": {
- "mediaId": 0,
- "fitSetting": "FIT"
}
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}
}| folderId | number |
| offset required | number Default: 0 |
| limit required | number Default: 10 |
| sort | string^[A-Za-z0-9_.]+:(asc|desc)$ Examples:
Optional sort in the format |
{- "total": 0,
- "offset": 0,
- "limit": 0,
- "data": [
- {
- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}, - "items": [
- {
- "type": "MEDIA",
- "enabled": true,
- "options": {
- "rules": {
- "conditions": [
- { }
], - "type": "AND"
}, - "fitSetting": "FIT"
}
}
], - "overlay": {
- "mediaId": 0,
- "fitSetting": "FIT"
}, - "permissions": {
- "update": true,
- "delete": true
}
}
]
}| id required | number |
Array of MediaPlaylistItemRequestDTO (object) or SubPlaylistPlaylistItemRequestDTO (object) The items to play in this playlist. These can be media items or another playlist. The order of items in this list determines the order they will be played. | |
| name | string <= 150 characters The name of the playlist that provides context for the content or details about its purpose. |
| folderId | number The folder to store playlist in. |
object An optional overlay to apply to the playlist. The configured media will overlay the entire playlist. Use this to display logos, clocks, tickers throughout your entire playlist. |
{- "items": [
- {
- "type": "MEDIA",
- "mediaId": 0,
- "durationInSeconds": 0,
- "enabled": true,
- "options": {
- "rules": {
- "conditions": [
- { }
], - "type": "AND"
}, - "fitSetting": "FIT"
}
}
], - "name": "string",
- "folderId": 0,
- "overlay": {
- "mediaId": 0,
- "fitSetting": "FIT"
}
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}
}{- "id": 0,
- "name": "string",
- "folder": {
- "id": 0,
- "name": "string"
}, - "items": [
- {
- "type": "MEDIA",
- "enabled": true,
- "options": {
- "rules": {
- "conditions": [
- { }
], - "type": "AND"
}, - "fitSetting": "FIT"
}
}
], - "overlay": {
- "mediaId": 0,
- "fitSetting": "FIT"
}, - "permissions": {
- "update": true,
- "delete": true
}
}Screens are the hardware devices running the signage player application to display your content.
| pairingCode required | string The pairing code that is viewable on the screen. |
| licenceNumber | string The licence to assign to the screen. If not provided, then the next available licence will be assigned. |
| displayName required | string The screen name viewable in the CMS. |
| ianaTimezone required | string The IANA timezone to assign to the screen. |
object (Metadata) |
{- "pairingCode": "string",
- "licenceNumber": "string",
- "displayName": "string",
- "ianaTimezone": "string",
- "metadata": {
- "tags": [
- "string"
], - "fields": { }
}
}{- "identity": "string",
- "displayName": "string"
}| identity required | string |
| displayName | string The screen name viewable in the CMS. |
| ianaTimezone | string The IANA timezone to assign to the screen. |
object (Metadata) |
{- "displayName": "string",
- "ianaTimezone": "string",
- "metadata": {
- "tags": [
- "string"
], - "fields": { }
}
}{- "identity": "string",
- "displayName": "string"
}{- "identity": "string",
- "configuration": {
- "displayName": "string",
- "ianaTimezone": "string",
- "metadata": {
- "tags": [
- "string"
], - "fields": { }
}, - "licence": {
- "licenceLevel": "BASIC",
- "licenceNumber": "string",
- "term": { },
- "expiresAt": "2019-08-24T14:15:22Z"
}
}, - "deviceReport": {
- "systemInfo": {
- "brand": "string",
- "model": "string",
- "serialNumber": "string",
- "memory": {
- "bytesAvailable": 0,
- "bytesTotal": 0
}, - "cpuPercent": 0,
- "temperatureCelsius": { }
}, - "application": {
- "runtime": "ANDROID",
- "version": "string"
}, - "capabilities": [
- "MODEL"
], - "health": {
- "lastSeen": "2019-08-24T14:15:22Z"
}
}, - "content": {
- "type": "DIRECT",
- "source": "PLAYLIST",
- "id": 0,
- "name": "string"
}, - "state": {
- "type": "IDLE",
- "reportedAt": "2019-08-24T14:15:22Z"
}, - "permissions": {
- "read": true,
- "update": true,
- "delete": true
}
}| applicationVersion | string Example: applicationVersion=1.0.3 |
| runtime | string Enum: "ANDROID" "TIZEN" "BRIGHTSIGN" "WEB" "WEBOS" "WINDOWS" "LINUX" |
| tags | Array of strings non-empty |
| offset required | number Default: 0 |
| limit required | number Default: 10 |
| sort | string^[A-Za-z0-9_.]+:(asc|desc)$ Examples:
Optional sort in the format |
{- "total": 0,
- "offset": 0,
- "limit": 0,
- "data": [
- {
- "identity": "string",
- "configuration": {
- "displayName": "string",
- "ianaTimezone": "string",
- "metadata": {
- "tags": [
- "string"
], - "fields": { }
}, - "licence": {
- "licenceLevel": "BASIC",
- "licenceNumber": "string",
- "term": { },
- "expiresAt": "2019-08-24T14:15:22Z"
}
}, - "deviceReport": {
- "systemInfo": {
- "brand": "string",
- "model": "string",
- "serialNumber": "string",
- "memory": {
- "bytesAvailable": 0,
- "bytesTotal": 0
}, - "cpuPercent": 0,
- "temperatureCelsius": { }
}, - "application": {
- "runtime": "ANDROID",
- "version": "string"
}, - "capabilities": [
- "MODEL"
], - "health": {
- "lastSeen": "2019-08-24T14:15:22Z"
}
}, - "content": {
- "type": "DIRECT",
- "source": "PLAYLIST",
- "id": 0,
- "name": "string"
}, - "state": {
- "type": "IDLE",
- "reportedAt": "2019-08-24T14:15:22Z"
}, - "permissions": {
- "read": true,
- "update": true,
- "delete": true
}
}
]
}