...
marker
: A value specifying which page to retrieve. This value is useful if theisTruncated
entry in the response body of the previous GET call indicates that the number of Presentation instances exceeds thepageSize
.pageSize
: The maximum number of Presentation instances that can be contained in the response bodyfilter
: An An expression for for filtering search results. The following are accepted expressions:- [entry] IS '<value>'
- [entry] CONTAINS '<value>'
- [entry] IS IN ('<value_a>','<value_b>', [...]) [entry] IS NOT IN ('<value_a>','<value_b>', [...])
- [entry] BEGINS WITH '<value>'
sort
: An expression for sorting the search results. The sort expression specifies the entry used for sorting and the ascending/descending (ASC/DESC) sorting order (e.g. "[presentation].[screenSettings].[videoMode] DESC
")
...
Removes a batch of presentations from the network.
Parameters
filter
: An An expression for for filtering search results. The following are accepted expressions:- [entry] IS '<value>'
- [entry] CONTAINS '<value>'
- [entry] IS IN ('<value_a>','<value_b>', [...])
- [entry] IS NOT IN ('<value_a>','<value_b>', [...])
- [entry] BEGINS WITH '<value>'
Response Body
The server returns code 200 upon success. Upon failure, it returns code 400 with an error message.
...
Retrieves the number of presentations on the network matching the specified filter criteria. If no filter is included, this call returns the total number of presentations on the network.
Parameters
filter
: An An expression for for filtering the request. The following are accepted expressions:- [entry] IS '<value>'
- [entry] CONTAINS '<value>'
- [entry] IS IN ('<value_a>','<value_b>', [...])
- [entry] IS NOT IN ('<value_a>','<value_b>', [...])
- [entry] BEGINS WITH '<value>'
Response Body
The presentation count is returned as an integer value.
...