Retrieve Application Formats

get

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

Retrieve cumulative list of formats owned by all device models assigned to the given application identified by application id

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : MessageFormatImpl_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : MessageFormatValue_receive
Type: object
Show Source
Nested Schema : fields
Type: array
Property description was not set
Show Source
Nested Schema : MessageFormatField_receive
Type: object
Show Source

401 Response

Unauthorized. The request requires user authentication.

404 Response

Not Found. The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.

406 Response

Request Not Acceptable. The resource identified by the request is only capable of generating response entities which have content characteristics not acceptable according to the accept headers sent in the request.
Back to Top

Examples

The following example shows how to retrieve formats owned by all device models assigned to the given application identified by an application id 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 -X GET -u user@eaxample.com:password http://iotserver/iot/api/v2/apps/1bf92a6056b5-2ad8/formats

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 in JSON format.

{
   "offset":0,
   "count":2,
   "limit":10,
   "hasMore":false,
   "links":[
      {
         "rel":"self",
         "href":"http://iotserver/iot/api/version/resource/path"
      },
      {
         "rel":"canonical",
         "href":"http://iotserver/iot/api/version/resource/path"
      }
   ],
   "items":[
      {
         "urn":"urn:example:unique:identifier:of:the:resource:252d",
         "name":"Message format name",
         "description":"Message format description",
         "deviceModel":"Device model that created this message format",
         "links":[
            {
               "rel":"self",
               "href":"http://iotserver/iot/api/version/resource/path"
            },
            {
               "rel":"canonical",
               "href":"http://iotserver/iot/api/version/resource/path"
            }
         ],
         "type":"DATA",
         "value":{
            "links":[
               {
                  "rel":"self",
                  "href":"http://iotserver/iot/api/version/resource/path"
               },
               {
                  "rel":"canonical",
                  "href":"http://iotserver/iot/api/version/resource/path"
               }
            ],
            "fields":[
               {
                  "name":"Name of the message format field",
                  "optional":false,
                  "links":[
                     {
                        "rel":"self",
                        "href":"http://iotserver/iot/api/version/resource/path"
                     },
                     {
                        "rel":"canonical",
                        "href":"http://iotserver/iot/api/version/resource/path"
                     }
                  ],
                  "type":"STRING"
               },
               {
                  "name":"Name of the message format field",
                  "optional":false,
                  "links":[
                     {
                        "rel":"self",
                        "href":"http://iotserver/iot/api/version/resource/path"
                     },
                     {
                        "rel":"canonical",
                        "href":"http://iotserver/iot/api/version/resource/path"
                     }
                  ],
                  "type":"STRING"
               }
            ]
         }
      },
      {
         "urn":"urn:example:unique:identifier:of:the:resource:4d02",
         "name":"Message format name",
         "description":"Message format description",
         "deviceModel":"Device model that created this message format",
         "links":[
            {
               "rel":"self",
               "href":"http://iotserver/iot/api/version/resource/path"
            },
            {
               "rel":"canonical",
               "href":"http://iotserver/iot/api/version/resource/path"
            }
         ],
         "type":"DATA",
         "value":{

         }
      }
   ]
}
Back to Top