Skip to main content

Presentations

📄️ /presentations

Get a list of presentations the current user can access<br/><br/>Takes three parameters: sort, filter and range.<br/>Sort takes a string with the field to sort by and the direction. Ex. sort=['name', 'desc']<br/>Filter filters by a field on the object. Ex. filter={'name': 'test'}<br/>Complex filters can be created using suffixes on the column. The following suffixes are supported:<br/>- _lt less than the column. Ex. filter={'created_on_lt': <date>} equivalent to created_on < <date><br/>- _gt greater than the column. Ex. filter={'created_on_gt': <date>} equivalent to created_on > <date><br/>- _gte greater than or equal to the column. Ex. filter={'created_on_gte': <date>} equivalent to created_on >= <date><br/>- _lte less than or equal to the column. Ex. filter={'created_on_lte': <date>} equivalent to created_on <= <date><br/>- _neq not equal to the column. Ex. filter={'name_neq': 'test'} equivalent to name != 'test'<br/>- _q column value contains. Ex. filter={'name_q': 'test'} equivalent to name like %test%<br/>Range takes a range of items. Ex. range=[0,50]