Retrieves a collection of lists. This operation returns the most recent version of each list.
limit | integer [ 0 .. 1000 ] Limits the number of collection items to be returned. |
offset | integer >= 0 Specifies the starting point within the collection of items to be returned. |
filter | string Filters the collection items. This field requires
a special format. Use For more information, see Using filter with collections. |
sort | Array of strings Sorts and orders the collection of items. To sort in descending
order, prefix with |
fields | string Limits the returned fields to the specified list, each field separated by a comma. The ID value is always returned. |
q | string Use this field to perform a partial search of text fields. |
Collection of lists retrieved.
Unauthorized access. Invalid credentials used.
Access forbidden.
// all parameters are optional const firstCollection = await api.lists.getAll(); // alternatively you can specify one or more of them const params = {limit: 20, offset: 100, sort: '-createdTime'}; const secondCollection = await api.lists.getAll(params); // access the collection items, each item is a Member secondCollection.items.forEach(list => console.log(list.fields.name));
[- {
- "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21",
- "version": 1,
- "description": "string",
- "values": [
- "string"
], - "createdTime": "2019-08-24T14:15:22Z",
- "updatedTime": "2019-08-24T14:15:22Z",
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
]
}
]