Retrieve factory maintenance config by factory ID

get

/productionMonitoring/clientapi/v2/factoryMaintenanceConfigs/factories/{factory-id}

This operation returns information about a factory maintenance config that is specified by factory ID.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : FactoryMaintenanceConfiguration_receive
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.

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

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

Example of Response Body

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


{
"factoryId":"6739212160e9-5275",
"highProbabilityThreshold":0.0,
"id":"10fe1ba4584e-123",
"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":"67222068d5-5a1d",
"registeredBy":"The name of the user who registered this factory maintenance config.",
"registrationTime":1469184297746,
"registrationTimeAsString":1469184297746
}



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/factories/9895eeb105a-475c



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