Retrieve all factory maintenance configs

get

/productionMonitoring/clientapi/v2/factoryMaintenanceConfigs

This operation returns information about all the factory maintenance configs that are filtered by a query.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : FactoryMaintenanceConfiguration_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : machineTypes
Type: array
The maintenance schedule limits for factory per day.
Show Source
Nested Schema : maximumMaintenanceScheduleLimits
Type: array
The machine types that need machine failure prediction
Show Source

401 Response

Unauthorized. The request requires user authentication.

403 Response

Forbidden. The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated.
Back to Top

Examples

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

Example of Response Body

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


{
"count":2,
"hasMore":false,
"items":[
{
"factoryId":"467952e03c86-4840",
"highProbabilityThreshold":0.0,
"id":"42a13d407da6-41be",
"lastModifiedBy":"The name of the user who last modified the definition of the factory maintenance config.",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"lowProbabilityThreshold":0.0,
"machineTypes":[
"machineTypes_1",
"machineTypes_2",
"machineTypes_3"
],
"maximumMaintenanceScheduleLimits":[
"maximumMaintenanceScheduleLimits_1",
"maximumMaintenanceScheduleLimits_2",
"maximumMaintenanceScheduleLimits_3"
],
"numberOfDays":12345,
"organizationId":"6afd4ab34b81-126e",
"registeredBy":"The name of the user who registered this factory maintenance config.",
"registrationTime":1469184297746,
"registrationTimeAsString":1469184297746
},
{
"factoryId":"66883f113126-42d3",
"highProbabilityThreshold":0.0,
"id":"459d34cf1fd9-34e5",
"lastModifiedBy":"The name of the user who last modified the definition of the factory maintenance config.",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"lowProbabilityThreshold":0.0,
"machineTypes":[
"machineTypes_1",
"machineTypes_2",
"machineTypes_3"
],
"maximumMaintenanceScheduleLimits":[
"maximumMaintenanceScheduleLimits_1",
"maximumMaintenanceScheduleLimits_2",
"maximumMaintenanceScheduleLimits_3"
],
"numberOfDays":12345,
"organizationId":"5b2117813217-44",
"registeredBy":"The name of the user who registered this factory maintenance config.",
"registrationTime":1469184297746,
"registrationTimeAsString":1469184297746
}
],
"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/factoryMaintenanceConfigs



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