Skip to main content

/presentations

GET 

/api/1.0/presentations

Get a list of presentations the current user can access

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

Request

Responses

OK