Bosch IoT Device Management

Examples

Example 1

Search for all things located in “living-room”, reorder the list to start with the lowest thing ID as the first element, and return the first 5 results.

/search/things?filter=eq(attributes/location,"living-room")&option=sort(+thingId),limit=(0,5)

Example 2

Report of all things which have been modified after January 21, 2019.
The result should contain the thing IDs, the revision number, and the timestamp of the latest modification.

 /search/things?filter=gt(_modified,"2019-01-21")&fields=thingId,_revision,_modified

Example 3

Report of all things which have been created after August 24, 2020.
The result should contain the thing IDs, the revision number, and the timestamp of the creation.

 /search/things?filter=gt(_created,"2020-08-24")&fields=thingId,_revision,_created