View Information about Version 2 of the API

get

/productionMonitoring/clientapi/v2/

Returns detailed information about version 2 of Oracle IoT Production Monitoring Cloud Service REST API

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : APIResourceVersionContext_receive
Type: object
Show Source
Nested Schema : APIResource$APIInfo_receive
Type: object
Show Source

401 Response

Unauthorized. The request requires user authentication.

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

curl -X GET 
   -u <username>:<password>
   -H 'Accept: application/json'
   https://iotserver/productionMonitoring/clientapi/v2/

Example of Response Body

The following example shows the content of the response body in JSON format:


{
"latest":false,
"links":[
{
"url":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"name":"Property description was not set"
}
],
"lifecycle":"Life cycle status of the version (active or deprecated)",
"version":"Version id"
}



Complete cURL Example

The following example shows a complete cURL command that you can use to perform the described operation:

curl -X GET 
   -u <username>:<password>
   -H 'Accept: application/json'
   https://iotserver/productionMonitoring/clientapi/v2/



Note that in the request, https://iotserver will be replaced by the name and port of your assigned IoT Cloud Service instance. The format of the Cloud Service instance is https://myinstance-myidentitydomain.iot.us.oraclecloud.com and the default port is 443.
Back to Top