Update a value list
POST / v1 / radar / value_lists /:id
Updates a ValueList object by setting the values of the parameters passed. Any parameters not provided will be left unchanged. Note that item_type is immutable.
Parameters
- alias string The name of the value list for use in rules. The maximum length is 100 characters.
- metadata map Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to
metadata. - name string The human-readable name of the value list. The maximum length is 100 characters.
Returns
Returns an updated ValueList object if a valid identifier was provided.
Response
Retrieve a value list
GET / v1 / radar / value_lists /:id
Retrieves a ValueList object.
Parameters
No parameters.
Returns
Returns a ValueList object if a valid identifier was provided.
Response
List all value lists
GET / v1 / radar / value_lists
Returns a list of ValueList objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.
Parameters
- alias string The alias used to reference the value list when writing rules. The maximum length is 100 characters.
More parameters
- contains string
- created object
- ending _ before string
- limit integer
- starting _ after string
Returns
A dictionary with a data property that contains an array of up to limit lists, starting after list starting_after. Each entry in the array is a separate ValueList object. If no more lists are available, the resulting array will be empty.
Response
