Retrieve all work orders

get

/productionMonitoring/clientapi/v2/workOrders

This operation returns information about all the work orders that are filtered by a query.

Request

Query Parameters
Header Parameters
  • To allow targeting requests to different organizations. The header value should contain the organization identifier
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : WorkOrder_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : operations
Type: object
The list of operations are used to process the work order
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/workOrders

Example of Response Body

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


{
"count":2,
"hasMore":false,
"items":[
{
"actualEndTime":1469184297746,
"actualEndTimeAsString":1469184297746,
"actualStartTime":1469184297746,
"actualStartTimeAsString":1469184297746,
"batchQuantity":12345,
"batchUOM":"Unit of measure of the batch quantity. Applicable only for Process Work Order",
"createdBy":"Name of the user who registered this work order",
"createdTime":1469184297746,
"createdTimeAsString":1469184297746,
"description":"Description of the work order.",
"externalId":"2e2479b3ac2-1d25",
"factory":"A factory this work order belongs to",
"id":"1ecf3b058ab-7ed6",
"integrationId":"5e477503fd-4250",
"lastModifiedBy":"Name of the user who last modified the definition of the work order",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"name":"Name that identifies the work order",
"operations":{
"links":[
{
"href":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"rel":"self"
},
{
"href":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"rel":"canonical"
}
]
},
"plannedEndTime":1469184297746,
"plannedEndTimeAsString":1469184297746,
"plannedQuantity":12345,
"plannedStartTime":1469184297746,
"plannedStartTimeAsString":1469184297746,
"primaryUOM":"Unit of measure of the primary product. Applicable only for Process Work Order",
"product":"A product identifier that the work order creates",
"routing":"The production routing identifier",
"state":"The user-defined name for the work order state. The field contains the system value of the work order state by default.",
"systemState":"Name of the work order system state. This represents the state of the work order during its life cycle. One of [CREATED, PLANNED, UNRELEASED, RELEASED, IN_PROCESS, COMPLETED, CLOSED, CANCELLED].",
"type":"Type of the work order state. One of [STANDARD, NON_STANDARD, TRANSFORM, REWORK]. Default value is STANDARD.",
"workMethod":"'DISCRETE_MANUFACTURING'"
},
{
"actualEndTime":1469184297746,
"actualEndTimeAsString":1469184297746,
"actualStartTime":1469184297746,
"actualStartTimeAsString":1469184297746,
"batchQuantity":12345,
"batchUOM":"Unit of measure of the batch quantity. Applicable only for Process Work Order",
"createdBy":"Name of the user who registered this work order",
"createdTime":1469184297746,
"createdTimeAsString":1469184297746,
"description":"Description of the work order.",
"externalId":"6b4b3bbe407b-98",
"factory":"A factory this work order belongs to",
"id":"36aac4235b-236a",
"integrationId":"71ac34a066f2-7eda",
"lastModifiedBy":"Name of the user who last modified the definition of the work order",
"lastModifiedTime":1469184297746,
"lastModifiedTimeAsString":1469184297746,
"name":"Name that identifies the work order",
"operations":{
"links":[
{
"href":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"rel":"self"
},
{
"href":"https://iotserver/productionMonitoring/clientapi/version/resource/path",
"rel":"canonical"
}
]
},
"plannedEndTime":1469184297746,
"plannedEndTimeAsString":1469184297746,
"plannedQuantity":12345,
"plannedStartTime":1469184297746,
"plannedStartTimeAsString":1469184297746,
"primaryUOM":"Unit of measure of the primary product. Applicable only for Process Work Order",
"product":"A product identifier that the work order creates",
"routing":"The production routing identifier",
"state":"The user-defined name for the work order state. The field contains the system value of the work order state by default.",
"systemState":"Name of the work order system state. This represents the state of the work order during its life cycle. One of [CREATED, PLANNED, UNRELEASED, RELEASED, IN_PROCESS, COMPLETED, CLOSED, CANCELLED].",
"type":"Type of the work order state. One of [STANDARD, NON_STANDARD, TRANSFORM, REWORK]. Default value is STANDARD.",
"workMethod":"'DISCRETE_MANUFACTURING'"
}
],
"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/workOrders



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