Filtering
Filter by one or more
Endpoints that return a list of resources can be filtered by various attributes.
See the API documentation for all available filter attributes and the formats to use for each endpoint. Combine multiple filters in a single request using and (&) as shown below.
Filter on the exact value of serial_number and product_id:
v1/assets?serial_number=0007&product_id=22
Filter with wildcard:
/assets?serial_number=0007*
Parent filter
For objects that can have a parent, such as assets, instrumentations, nodes the parent filter supports null and not null values:
Returns all nodes without a parent:
v1/nodes?parent_id=null
Return all nodes with parent:
/nodes?parent_id=!null