Get all operators

get

/productionMonitoring/clientapi/v2/operators

Get information about all the operators filtered by a query. This method supports the request header with name 'X-ORACLE-IOT-ORG', which allows targeting requests to different organizations. The value of this request header should contain the organization identifier.

Request

Query Parameters
Header Parameters
  • This method supports the request header with name 'X-ORACLE-IOT-ORG', which allows targeting requests to different organizations. The value of this request header should contain the organization identifier.
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : Operator_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : properties
Type: object
Additional Properties Allowed
Show Source
  • A map of the following type: Map<String, String>
The machine's external entity properties as key, value pairs.
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/operators

Example of Response Body

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


{
"count":2,
"hasMore":false,
"items":[
{
"description":"Description about the operator",
"email":"The email address of the operator. IDCS user will be created if value is provided",
"extId":"646cb25457e-40ba",
"factory":"The factory this operator belongs to",
"integrationId":"586b91b2406-55bc",
"lastModifiedBy":"Name of the user who last modified the definition of the operator",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"properties":{
"properties_key1":"properties_value1",
"properties_key2":"properties_value2",
"properties_key3":"properties_value3"
},
"registeredBy":"Name of the user who registered this operator",
"registrationTime":1469184297746,
"registrationTimeAsString":1469184297746,
"state":"State of the operatorOne of [NOT_AVAILABLE, WORKING, IDLE, UNKNOWN].",
"type":"Type of the operator",
"username":"Username of the operator"
},
{
"description":"Description about the operator",
"email":"The email address of the operator. IDCS user will be created if value is provided",
"extId":"7d5c1df1118-293f",
"factory":"The factory this operator belongs to",
"integrationId":"24a973a36189-231c",
"lastModifiedBy":"Name of the user who last modified the definition of the operator",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"properties":{
"properties_key1":"properties_value1",
"properties_key2":"properties_value2",
"properties_key3":"properties_value3"
},
"registeredBy":"Name of the user who registered this operator",
"registrationTime":1469184297746,
"registrationTimeAsString":1469184297746,
"state":"State of the operatorOne of [NOT_AVAILABLE, WORKING, IDLE, UNKNOWN].",
"type":"Type of the operator",
"username":"Username of the operator"
}
],
"limit":10,
"links":[
{
"href":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"rel":"self"
},
{
"href":"https://iotserver/productionMonitoring/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/productionMonitoring/clientapi/v2/operators



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