Retrieve the List of Message Format Associations

get

/iot/api/v2/apps/{app-id}/explorations

Retrieve the list of message format associations with its explorations, for an IoT Application. The API is deprecated and may be removed in a future release.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : ApplicationExplorationModel_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
  • Text description of the message format
  • ID of the exploration, that needs to be associated with the newly created message format
  • Name of the message format
  • Optional field, the severity of the generated alerts, if not present the severity will be set to default SIGNIFICANT
  • Type of the messages that should be generated from the exploration output, possible values for now are "data" and "alert"
  • Format URN
Back to Top

Examples

The following example shows how to get a list of message formats associated with explorations for a certain application by submitting a GET request on the REST resource using cURL.For more information about cURL, see Use cURL.

Note:

In the request and response, iotserver will be replaced by name and port of your assigned Oracle IoT Cloud Service instance. The format of the Cloud Service instance is myinstance-myidentitydomain.iot.us.oraclecloud.com and the default port is 443
curl -i -X GET -H 'Accept:application/json' -H 'Authorization: Basic aW90OndlbGNvbWUx' "http://iotserver:7101/iot/api/v2/apps/0-AM/explorations"

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 200 OK
Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body containing the list of message format associations with explorations in JSON format.
{
   "items":[
      {
         "urn":"urn:oracle:iot:exploration:ThermometerExploration2",
         "explorationID":"145",
         "name":"My Thermometer Exploration2 Format",
         "description":"My Thermometer Exploration Format2 Description",
         "type":"data",
         "severity":"SIGNIFICANT"
      },
      {
         "urn":"urn:oracle:iot:exploration:ThermometerExploration1",
         "explorationID":"131",
         "name":"My Thermometer Exploration Format",
         "description":"My Thermometer Exploration Format Description",
         "type":"data",
         "severity":"SIGNIFICANT"
      }
   ],
   "links":[
      {
         "href":"http://iotserver:7101/iot/api/v2/apps/0-AM/explorations",
         "rel":"self"
      }
   ],
   "count":2
}
Back to Top