GET
/v1/radar/value_list_itemsList value list items
Lists value list items belonging to a specified Radar value list. Use value to perform an “is like” match, created to filter by creation time, and cursor parameters to paginate results sorted with the newest items first.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
createdobjectoptional
Filter items by creation time using a Unix timestamp or a range with `gt`, `gte`, `lt`, or `lte`.
ending_beforestringoptional
Object ID cursor that returns results before the specified item.
expandarray<string>optional
Fields to expand in each returned object.
limitintegeroptional
Maximum number of objects to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Object ID cursor that returns results after the specified item.
valuestringoptional
Return items whose values match this value using an “is like” comparison. Maximum 800 characters.
value_liststringrequired
Identifier of the parent value list whose items to retrieve.
200Returns a list object containing value list items in `data`, a `has_more` pagination flag, the `list` object type, and the resource `url`.
dataarray<ValueListItem>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired
Error handling
value_list must identify the parent value list, and limit must be between 1 and 100 when supplied. value accepts up to 800 characters, while ending_before and starting_after accept object ID cursors up to 5,000 characters.