...
Filtering and Sorting Expressions
This example describes the player entity, but the same solution is implemented for all other entities (for example, groups, feeds, playlists, etc.).
Example
The BSN.cloud Main API currently exposes the following
...
player management methods which accept optional filter and sort expressions:
GET
...
~/
...
{{version}}/REST/Devices/[?marker={string}][&pageSize={byte}][&filter={expression}][&sort={expression}]
...
which retrieves the paged list including up to 100 'Device' instances starting from specified marker, matching the specified filter expression and sorted in accordance to specified sort expression.
GET ~/{{version}}/REST/Devices/Regions/
...
{*locationPath}/[?filter={expression}]
...
which retrieves the list of 'DevicesRegion' providing the aggregated information of locations of 'Device' instances matching the specified location path and filter expression.
GET ~/{{version}}/REST/Devices/Count/[?
...
filter={expression}]
...
which retrieves the number of 'Device' instances matching the specified filter expression.
PATCH ~/{{version}}/REST/Devices/[?filter={expression}]
(in development) which
...
applies the specified changes to 'Device' instances matching the specified filter expression.
DELETE ~/{{version}}/REST/Devices/[?filter={expression}]
...
which retrieve the list of 'BSN.WebServices.Main.v201903.DTO.DevicesRegion'/'BSN.WebServices.Main.v202007.DTO.DevicesRegion'/'BSN.WebServices.Main.v202010.DTO.DevicesRegion' providing the aggregated information of Locations of 'BSN.WebServices.Main.v201903.DTO.Device'/'BSN.WebServices.Main.v202007.DTO.Device'/'BSN.WebServices.Main.v202010.DTO.Device' instances matching the specified Location Path and filter expression.
GET ~/2019/03/REST/Devices/Count/[?filter={expression}]
GET ~/2020/07/REST/Devices/Count/[?filter={expression}]
GET ~/2020/10/REST/Devices/Count/[?filter={expression}]
which retrieve number of 'BSN.WebServices.Main.v201903.DTO.Device'/'BSN.WebServices.Main.v202007.DTO.Device'/'BSN.WebServices.Main.v202010.DTO.Device' instances matching the specified filter expression.
PATCH ~/2020/10/REST/Devices/[?filter={expression}]
(in development) which applies the specified changes to 'BSN.WebServices.Main.v201903.DTO.Device'/'BSN.WebServices.Main.v202007.DTO.Device'/'BSN.WebServices.Main.v202010.DTO.Device' instances matching the specified filter expression.
DELETE ~/2019/03/REST/Devices/[?filter={expression}]
DELETE ~/2020/07/REST/Devices/[?filter={expression}]
DELETE ~/2020/10/REST/Devices/[?filter={expression}]
which deletes 'BSN.WebServices.Main.v201903.DTO.Device'/'BSN.WebServices.Main.v202007.DTO.Device'/'BSN.WebServices.Main.v202010.DTO.Device' instances matching the specified filter expression.
Panel | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
ON THIS PAGE
|
Filter Expression Criteria
- Each filter expression may contain one or more criteria combined by AND/OR operators and optionally grouped by parentheses.
- Each criteria may be based on property name, System Tag, or Custom Tag.
All property names are based on data contract of the target Main API version - the client specifies only what it sees at the moment of integration and does not change later. This means that clients using Main API v201903 refer to Player Health Status property as [HealthStatus],
expecting to get one of { "NoSubscriptions", "Normal", "Warning", "Error" } enumeration values. The clients using v202010 refer to it as [Status].[Health]
and the clients which will use some next version will refer to it at some different path and will expect even different, more specific values and all of that must be supported at the same time based on the same internal dataset. It means that regardless of the target Main and Device API versions used by customers and Players for reporting Player Settings and Status this information must be available for retrieval and handle expressions of all existing formats in all Main and Device API versions at the same time.
According to initial business requirements the Main API must support filtering and sorting by all properties exposed in its data contracts. But due to syntax specifics the list of supported 'Player' Entity properties is currently limited to:
In Main API v201903 and v202007 - as defined in 'BSN.WebServices.Main.v201903.DTO.Device', 'BSN.WebServices.Main.v202007.DTO.Device' and referenced classes:
[Id] // integer
[Serial] // string
[Name] // string
[ConcatUnitNameAndSerial] // boolean
[Description] // string
[CurrentSubscription] // object
[CurrentSubscription].[Id] // integer
[CurrentSubscription].[DeviceId] // nullable integer
[CurrentSubscription].[Type] // string-enumeration
[CurrentSubscription].[ActivityPeriod] // TimeSpan
[CurrentSubscription].[Status] // string-enumeration
[CurrentSubscription].[CreationDate] // DateTime
[CurrentSubscription].[ActivationDate] // nullable DateTime
[CurrentSubscription].[SuspensionDate] // nullable DateTime
[CurrentSubscription].[ExpirationDate] // nullable DateTime
[TargetGroup] // object
[TargetGroup].[Id] // integer
[TargetGroup].[Name] // string
[TaggedGroups] // object array
[TargetBrightWall] // object
[TargetBrightWall].[Id] // integer
[TargetBrightWall].[Name] // string
[TargetBrightWallScreenNumber] // nullable byte
[ReportedGroup] // object
[ReportedGroup].[Id] // integer
[ReportedGroup].[Name] // string
[ReportedBrightWall] // object
[ReportedBrightWall].[Id] // integer
[ReportedBrightWall].[Name] // string
[ReportedBrightWallScreenNumber] // nullable byte
[Presentation] // object
[Presentation].[Id] // integer
[Presentation].[Name] // string
[Model] // string-enumeration
[Family] // string-enumeration
[RegistrationDate] // DateTime
[LastModifiedDate] // DateTime
[Autorun] // object
[Autorun].[Version] // string
[Autorun].[IsCustom] // boolean
[FirmwareVersion] // string
[CardSize] // string
[CardFreeSize] // string
[TargetTimeZone] // string
[ReportedTimeZone] // string
[ExternalIpAddress] // string
[ScreenColor] // string
[SetupType] // string-enumeration
[ContentCheckPeriod] // string-enumeration
[ContentDownloadsStartTime] // nullable TimeSpan
[ContentDownloadsEndTime] // nullable TimeSpan
[HealthReportingPeriod] // string-enumeration
[HealthReportingStartTime] // nullable TimeSpan
[HealthReportingEndTime] // nullable TimeSpan
[LastContentCheckTime] // DateTime
[LastSyncSpecProcessedTime] // DateTime
[LastContentDownloadStartTime] // DateTime
[LastContentDownloadEndTime] // DateTime
[LastHeartbeatTime] // DateTime
[LastErrorTime] // DateTime
[Uptime] // TimeSpan
[HealthStatus] // string-enumeration
[NetworkSettings] // object
[NetworkSettings].[Hostname] // string
[NetworkSettings].[ProxyServer] // string
[NetworkSettings].[ProxyBypass] // string array
[NetworkSettings].[TimeServer] // string
[NetworkSettings].[WiredConnectionPriority] // integer
[NetworkSettings].[WirelessConnectionPriority] // integer
[NetworkSettings].[Wired] // object
[NetworkSettings].[Wired].[UseDHCP] // boolean
[NetworkSettings].[Wired].[IpAddress] // string
[NetworkSettings].[Wired].[SubnetMask] // string
[NetworkSettings].[Wired].[DefaultGateway] // string
[NetworkSettings].[Wired].[DNS1] // string
[NetworkSettings].[Wired].[DNS2] // string
[NetworkSettings].[Wired].[DNS3] // string
[NetworkSettings].[Wired].[RateLimitInsideContentDownloadWindow] // nullable unsigned integer
[NetworkSettings].[Wired].[RateLimitOutsideContentDownloadWindow] // nullable unsigned integer
[NetworkSettings].[Wired].[RateLimitDuringInitialDownloads] // nullable unsigned integer
[NetworkSettings].[Wired].[ContentDownloadEnabled] // boolean
[NetworkSettings].[Wired].[TextFeedsDownloadEnabled] // boolean
[NetworkSettings].[Wired].[MediaFeedsDownloadEnabled] // boolean
[NetworkSettings].[Wired].[HealthReportingEnabled] // boolean
[NetworkSettings].[Wired].[LogsUploadEnabled] // boolean
[NetworkSettings].[Wireless] // object
[NetworkSettings].[Wireless].[Enabled] // boolean
[NetworkSettings].[Wireless].[SSID] // string
[NetworkSettings].[Wireless].[Passphrase] // string
[NetworkSettings].[Wireless].[UseDHCP] // boolean
[NetworkSettings].[Wireless].[IpAddress] // string
[NetworkSettings].[Wireless].[SubnetMask] // string
[NetworkSettings].[Wireless].[DefaultGateway] // string
[NetworkSettings].[Wireless].[DNS1] // string
[NetworkSettings].[Wireless].[DNS2] // string
[NetworkSettings].[Wireless].[DNS3] // string
[NetworkSettings].[Wireless].[RateLimitInsideContentDownloadWindow] // nullable unsigned integer
[NetworkSettings].[Wireless].[RateLimitOutsideContentDownloadWindow] // nullable unsigned integer
[NetworkSettings].[Wireless].[RateLimitDuringInitialDownloads] // nullable unsigned integer
[NetworkSettings].[Wireless].[ContentDownloadEnabled] // boolean
[NetworkSettings].[Wireless].[TextFeedsDownloadEnabled] // boolean
[NetworkSettings].[Wireless].[MediaFeedsDownloadEnabled] // boolean
[NetworkSettings].[Wireless].[HealthReportingEnabled] // boolean
[NetworkSettings].[Wireless].[LogsUploadEnabled] // boolean
[RemoteSnapshotSettings] // object
[RemoteSnapshotSettings].[Enabled] // boolean
[RemoteSnapshotSettings].[CaptureInterval] // TimeSpan
[RemoteSnapshotSettings].[ScreenShotsCountLimit] // unsigned short
[RemoteSnapshotSettings].[ImageQuality] // byte
[RemoteSnapshotSettings].[ScreenOrientation] // string-enumeration
[LogsSettings] // object
[LogsSettings].[EnableDiagnosticLog] // boolean
[LogsSettings].[EnableEventLog] // boolean
[LogsSettings].[EnablePlaybackLog] // boolean
[LogsSettings].[EnableStateLog] // boolean
[LogsSettings].[EnableVariableLog] // boolean
[LogsSettings].[UploadAtBoot] // boolean
[LogsSettings].[UploadTime] // nullable TimeSpan
[DiagnosticWebServerSettings] // object
[DiagnosticWebServerSettings].[Enabled] // boolean
[DiagnosticWebServerSettings].[Password] // string
[LocalWebServerSettings] // object
[LocalWebServerSettings].[Enabled] // boolean
[LocalWebServerSettings].[UserName] // string
[LocalWebServerSettings].[Password] // string
[LocalWebServerSettings].[EnableUpdateNotifications] // boolean
[DeviceLocation] // object
[DeviceLocation].[PlaceId] // string
[DeviceLocation].[GPSLatitude] // nullable double
[DeviceLocation].[GPSLongitude] // nullable double
[DeviceLocation].[Country] // string
[DeviceLocation].[CountryLongName] // string
[DeviceLocation].[AdminAreaLevel1] // string
[DeviceLocation].[AdminAreaLevel1LongName] // string
[DeviceLocation].[AdminAreaLevel2] // string
[DeviceLocation].[AdminAreaLevel2LongName] // string
[DeviceLocation].[Locality] // string
[DeviceLocation].[LocalityLongName] // string
[DeviceLocation].[Path] // string
[DeviceLocation].[PathLongName] // string
[ForceReboot] // boolean
[ForceRecovery] // boolean
[ForceReformat] // boolean
[ForceLogUpload] // boolean
[Beacons] // object array
[Tags] // object
[Permissions] // object array
In Main API v202010 - as defined in 'BSN.WebServices.Main.v202010.DTO.Device' and referenced classes:
...
which deletes the 'Device' instances matching the specified filter expression.
Filter Expression Criteria
Each filter expression may contain one or more criteria combined by AND/OR operators and optionally grouped by parentheses.
Each criteria may be based on property name, system tag, or custom tag.
All property names are based on data contract of the target Main API version
System and Custom Tags
In addition to
...
properties each 'Player'
...
entity instance may have a different set of
...
system and
...
custom tags specified by customer, exposed via
...
the [Dictionary<string, object>] Tags
...
property and managed via the following BSN.cloud Main API methods:
PUT
...
~/{version}/REST/Devices/{playerId:int}/
...
PUT
...
~/{version}/REST/Devices/{serial}/
...
PATCH
...
~/{version}/REST/Devices/{playerId:int}/
...
PATCH
...
~/{version}/REST/Devices/{serial}/
...
GET
...
~/{version}/REST/Devices/{playerId:int}/Tags/
...
GET
...
~/{version}/REST/Devices/{serial}/Tags/
...
POST
...
~/{version}/REST/Devices/{playerId:int}/Tags/
...
POST
...
~/{version}/REST/Devices/{serial}/Tags/
...
DELETE
...
~/{version}/REST/Devices/{playerId:int}/Tags/
...
DELETE
...
~/{version}/REST/Devices/{serial}/Tags/
Each
...
system and
...
custom tag must be explicitly specified for the target
...
entity instance but the list of available
...
system tags is predefined by product owners and mapped to some properties so their values must be always in sync. For example, the
...
system tag mapped to the Player Health Status property is called
...
string::[Device].<HealthStatus>
...
:
string::[Device].<HealthStatus>
Property and Tag Mentions in Expressions
Property and
...
tag mentions in expressions are different: properties are wrapped by square brackets
...
and are separated by dots while
...
tags are wrapped by angle brackets and may optionally be prepended by the target
...
entity name in square brackets, and the data type is separated by double colon as you can see in the example above. Each property and
...
tag has a strong data type, for properties and
...
system tags it is defined in data contract of a target API version and for
...
custom tags it is resolved either from fully qualified name or first assigned value. In addition
...
, there is a request to support
...
custom tags without values acting as labels. The data type defines which operators and functions are applicable to a given property or
...
tag in conditions.
The properties and
...
tags of boolean data type typically support the following operators:
IS
...
TRUE
...
IS
...
FALSE
The properties and
...
tags of numeric data types typically support the following operators:
IS
...
{number}
...
IS
...
NOT
...
{number}
...
IS
...
GREATER
...
THAN
...
{number}
...
IS
...
LESS
...
THAN
...
{number}
...
IS
...
IN
...
THE
...
RANGE
...
{number}
...
AND
...
{number}
...
IS
...
NOT
...
IN
...
THE
...
RANGE
...
{number}
...
AND
...
{number}
...
IS
...
IN
...
({number},
...
{number},
...
...)
...
IS
...
NOT
...
IN
...
({number},
...
{number},
...
...)
...
The GPS coordinates also support expressions like:
GPS
...
LOCATION
...
([Latitude]
...
AND
...
[Longitude])
...
IN
...
({latitude},
...
{longitude},
...
{distance})
...
GPS
...
LOCATION
...
([Latitude]
...
AND
...
[Longitude])
...
NOT
...
IN
...
({latitude},
...
{longitude},
...
{distance})
The properties and
...
tags of string data type typically support the following operators:
IS
...
NULL
...
IS
...
NOT
...
NULL
...
IS
...
'{expression}'
...
IS
...
NOT
...
'{expression}'
...
BEGINS
...
WITH
...
'{string}'
...
ENDS
...
WITH
...
'{string}'
...
CONTAINS
...
'{string}'
...
DOES
...
NOT
...
CONTAIN
...
'{string}'
...
CONTAINS
...
ALL
...
('{string}',
...
'{string}',
...
...)
...
CONTAINS
...
ANY
...
('{string}',
...
'{string}',
...
...)
...
IS
...
IN
...
('{string}',
...
'{string}',
...
...)
...
IS
...
NOT
...
IN
...
('{string}',
...
'{string}',
...
...)
The expressions used in IS and IS NOT operators may include '*', '?', '[' + ']' wildcards.
The properties and
...
tags of DateTime (timestamp) data type typically support the following operators:
IS
...
'{DateTime}'
...
IS
...
NOT
...
'{DateTime}'
...
IS
...
AFTER
...
'{DateTime}'
...
IS
...
BEFORE
...
'{DateTime}'
...
IN
...
THE
...
LAST
...
({interval},
...
{range},
...
'{DateTime}')
...
where
...
{interval}
...
is
...
one
...
of
...
{
...
"YEARS",
...
"MONTHS",
...
"DAYS"
...
}
...
enumeration
...
values
...
NOT
...
IN
...
THE
...
LAST
...
({interval},
...
{range},
...
'{DateTime}')
...
where
...
{interval}
...
is
...
one
...
of
...
{
...
"YEARS",
...
"MONTHS",
...
"DAYS"
...
}
...
enumeration
...
values
...
IS
...
IN
...
THE
...
RANGE
...
'{DateTime}'
...
AND
...
'{DateTime}'
...
IS
...
NOT
...
IN
...
THE
...
RANGE
...
'{DateTime}'
...
AND
...
'{DateTime}'
...
IS
...
IN
...
('{DateTime}',
...
'{DateTime}')
...
IS
...
NOT
...
IN
...
('{DateTime}',
...
'{DateTime}')
The '{DateTime}' value format must follow ISO 8601 and is typically like '2021-12-20T18:25:01.123Z'.
The properties and
...
tags of TimeSpan (time interval) data type typically support the following operators:
IS
...
'{TimeSpan}'
...
IS
...
NOT
...
'{TimeSpan}'
...
IS
...
GREATER
...
THAN
...
'{TimeSpan}'
...
IS
...
LESS
...
THAN
...
'{TimeSpan}'
...
IS
...
IN
...
('{TimeSpan}',
...
'{TimeSpan}')
...
IS
...
NOT
...
IN
...
('{TimeSpan}',
...
'{TimeSpan}')
The '{TimeSpan}' value format must follow ISO 8601 and is typically like '3.18:25:01'.
The properties and
...
tags of numeric array
...
data types typically support the following operators:
IS
...
NULL
...
IS
...
NOT
...
NULL
...
CONTAINS
...
ALL
...
('{number}',
...
'{number}',
...
...)
...
CONTAINS
...
ANY
...
('{number}',
...
'{number}',
...
...)
The properties and
...
tags of string array
...
data type typically support the following operators:
IS
...
NULL
...
IS
...
NOT
...
NULL
...
CONTAINS
...
ALL
...
('{string}',
...
'{string}',
...
...)
...
CONTAINS
...
ANY
...
('{string}',
...
'{string}',
...
...)
The properties and
...
tags of object data type typically support the following operators:
IS
...
NULL
...
IS
...
NOT
...
NULL
Sort expressions may contain only one fully qualified property name or
...
tag with optional ASC/DESC qualifier, but should support more in future.