List incidents

get

/assetMonitoring/clientapi/v2/incidents

This operation returns the list of incidents that exist for the current instance of the cloud service.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : FleetIncident_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : comments
Type: array
Property description was not set
Show Source
Nested Schema : metadata
Type: object
Additional Properties Allowed
Show Source
  • A map of the following type: Map<String, String>
Property description was not set
Show Source
Nested Schema : tags
Type: array
Property description was not set
Show Source
Nested Schema : IncidentCommentModel_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/assetMonitoring/clientapi/v2/incidents

Example of Response Body

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


{
"count":2,
"hasMore":false,
"items":[
{
"comments":[
{
"createdBy":"Property description was not set",
"createdTime":1469184297746,
"state":"Property description was not set",
"text":"Property description was not set",
"type":"One of [USER_DEFINED, LIFECYCLE_STATE_TRANSITION]."
}
],
"createdBy":"Property description was not set",
"createdTime":1469184297746,
"createdTimeAsString":"2016-07-22T10:44:57.746Z",
"description":"Property description was not set",
"geoLocation":"Property description was not set",
"incidentTime":1469184297746,
"incidentTimeAsString":"2016-07-22T10:44:57.746Z",
"lastModifiedBy":"Property description was not set",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":"2016-07-22T10:44:57.746Z",
"metadata":{
"metadata_key1":"metadata_value1",
"metadata_key2":"metadata_value2",
"metadata_key3":"metadata_value3"
},
"organizationId":"7676005781-6e29",
"priority":"One of [LOW, MEDIUM, HIGH].",
"rule":"Property description was not set",
"state":"One of [NEW, OPEN, WORK_IN_PROGRESS, RESOLVED, WITHDRAWN].",
"summary":"Property description was not set",
"tags":[
"tags_1",
"tags_2",
"tags_3"
],
"type":"Property description was not set"
},
{
"comments":[
{
"createdBy":"Property description was not set",
"createdTime":1469184297746,
"state":"Property description was not set",
"text":"Property description was not set",
"type":"One of [USER_DEFINED, LIFECYCLE_STATE_TRANSITION]."
}
],
"createdBy":"Property description was not set",
"createdTime":1469184297746,
"createdTimeAsString":"2016-07-22T10:44:57.746Z",
"description":"Property description was not set",
"geoLocation":"Property description was not set",
"incidentTime":1469184297746,
"incidentTimeAsString":"2016-07-22T10:44:57.746Z",
"lastModifiedBy":"Property description was not set",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":"2016-07-22T10:44:57.746Z",
"metadata":{
"metadata_key1":"metadata_value1",
"metadata_key2":"metadata_value2",
"metadata_key3":"metadata_value3"
},
"organizationId":"21b07e3bf80-1799",
"priority":"One of [LOW, MEDIUM, HIGH].",
"rule":"Property description was not set",
"state":"One of [NEW, OPEN, WORK_IN_PROGRESS, RESOLVED, WITHDRAWN].",
"summary":"Property description was not set",
"tags":[
"tags_1",
"tags_2",
"tags_3"
],
"type":"Property description was not set"
}
],
"limit":10,
"links":[
{
"href":"https://iotserver/assetMonitoring/clientapi/version/resource/path",
"rel":"self"
},
{
"href":"https://iotserver/assetMonitoring/clientapi/version/resource/path",
"rel":"canonical"
}
],
"offset":0
}



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/assetMonitoring/clientapi/v2/incidents



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