Retrieving a collection of list follows the conventions described in Version 5 Overview.
Retrieve a collection of lists follows the conventions described in the Version 5 Overview.
Sortable Fields
When executing a query, the following fields can be specified in the orderBy parameter. See the conventions for query described in the Version 5 Overview.
When executing a query, the following parameters can be used to filter the returned results. These parameters can be specified in the request along with any shared parameters defined in Version 5 Overview. When specifying more than one parameter, all parameters must match the record in order for it to be returned in the results.
Parameter
Description
id
Returns any list where ID is equal to the given integer value.
idList
Returns any list where ID is included in the given list of values.
idGreaterThan
Returns any list where ID is greater than the specified value, non-inclusive.
idGreaterThanOrEqualTo
Returns any list where ID is greater than or equal to the specified value.
idLessThan
Returns any list where ID is less than the specified value, non-inclusive.
idLessThanOrEqualTo
Returns any list where ID is less than or equal to the specified value.
name
Returns any list where Name is equal to the given string value.
createdAt
Returns any list where CreatedAt is equal to the given datetime value.
createdAtAfter
Returns any list where CreatedAt is after the given datetime value, non-inclusive.
createdAtAfterOrEqualTo
Returns any list where CreatedAt is after or equal to the given datetime value.
createdAtBefore
Returns any list where CreatedAt is before the given datetime value, non-inclusive.
createdAtBeforeOrEqualTo
Returns any list where CreatedAt is before or equal to the given datetime value.
updatedAt
Returns any list where UpdatedAt is equal to the given datetime value.
updatedAtAfter
Returns any list where UpdatedAt is after the given datetime value, non-inclusive.
updatedAtAfterOrEqualTo
Returns any list where UpdatedAt is after or equal to the given datetime value.
updatedAtBefore
Returns any list where UpdatedAt is before the given datetime value, non-inclusive.
updatedAtBeforeOrEqualTo
Returns any list where UpdatedAt is before or equal to the given datetime value.
deleted
Determines whether to return deleted records. The value can be false (default), true, or all.
1HTTP/1.1 200 OK2Content-Type: application/json3{4 "values": [5{6 "id": 283,7 "name": "My List 1"8},9{10 "id": 282,11 "name": "My List 2"12},13{14 "id": 239,15 "name": "My List 3"16},17{18 "id": 202,19 "name": "My List 4"20}21]22}
Add Tag
Adds a Tag to the List object, which creates a TaggedObject.