Get Asset URIs

This API returns the endpoints related to Intelligent Environments assets.
Note: Currently, we only support the "AND" condition at the search type level.
METHOD GET
Request URI <production url>/v1/assets

Response Parameters

Parameter Data Type Required? Description
_links object Yes Links for executing operations on any asset.
self link Yes The URL for this API.
search link Yes A URL template to search assets using the query parameters listed below. For information on using the query parameters, see Get List of Assets.
q
Query to search by device type, media-type, or event-type. For example, q=device-type:NODE%20AND%20media-type:IMAGE;VIDEO
bbox
The bounded area for your search, identified by GPS coordinates.
page
Indicates the page number; default value is 0.
size
Maximum number of records to return per page; if none specified, the default value of 2 is used automatically.
search-analytics link Yes Future feature to be documented at a later date.
live-analytics link Yes Future feature to be documented at a later date.

Sample Response

{
  "_links": {
    "self": {
      "href": "http://<production url>/v1/assets"
    },
    "search": {
      "href": "http://<production url>/v1/assets/search{?q,bbox,page,size}",
      "templated": true
    }
    "search-analytics": {
      "Future Feature"
    },
    "live-analytics": {
      "Future Feature"
    }
  }