Retrieve production plan information

get

/productionMonitoring/clientapi/v2/productionPlans/{plan-id}

This operation retrieves production plan by id. 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

Path Parameters
  • The identifier created by the Oracle IoT Cloud Service for the production plan.
Query Parameters
  • The list of fields to be expanded in the result. Use 'all' to expand all expandable fields in result.
  • The comma-separated list of fields to be shown in response. By default all response object fields will be present.
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 : ProductionPlan_receive
Type: object
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.

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.
Back to Top

Examples

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

Example of Response Body

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


{
"actualQuantity":0.0,
"endTime":1469184297746,
"endTimeAsString":"2016-07-22T10:44:57.746Z",
"expectedQuantity":0.0,
"externalId":"24c9580346bb-5154",
"factory":"The identifier of the factory the production plan is created for.",
"id":"634e27a76164-662",
"idealCycleTime":0.0,
"machine":"The identifier of the machine the production plan is created for.",
"operator":"The identifier of the operator the production plan is created for.",
"product":"The identifier of the product the production plan is created for.",
"productionLine":"The identifier of the production line the production plan is created for.",
"rejectQuantity":0.0,
"routingTask":"The identifier of the routing task the production plan is created for.",
"scrapQuantity":0.0,
"startTime":1469184297746,
"startTimeAsString":"2016-07-22T10:44:57.746Z",
"type":"FACTORY",
"workOrder":"The identifier of the work order the production plan is created for.",
"workOrderNumber":"The work order number for the production plan. It is unique within a factory."
}



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/productionPlans/6aaa7d657ac-170



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