Retrieve all production lines

get

/productionMonitoring/clientapi/v2/productionLines

This operation retrieves information about all production lines.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successfully processed.
Body ()
Root Schema : ProductionLine_receive_list
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : machines
Type: array
The list of identifiers of machines that are part of the production line.
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/productionLines

Example of Response Body

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


{
"count":2,
"hasMore":false,
"items":[
{
"description":"The description about the production line.",
"factory":"The reference to the factory that the production line belongs to.",
"id":"4a92604c4c93-3f77",
"machines":[
"machines_1",
"machines_2",
"machines_3"
],
"name":"The unique name of the production line."
},
{
"description":"The description about the production line.",
"factory":"The reference to the factory that the production line belongs to.",
"id":"2242324620e3-6904",
"machines":[
"machines_1",
"machines_2",
"machines_3"
],
"name":"The unique name of the production line."
}
],
"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/productionLines



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