1. Overview
Microservice containing the business logic for managing operator-app-service.
1.2. Tags
-
activity-controller : Activity Controller
-
application-tab-controller : Application Tab Controller
-
bom-reallocation-genealogy-controller : Bom Reallocation Genealogy Controller
-
consumption-operations-controller : Consumption Operations Controller
-
document-management-controller : Document Management Controller
-
engineering-unit-controller : Engineering Unit Controller
-
external-config-controller : External Config Controller
-
labor-type-controller : Labor Type Controller
-
material-controller : Material Controller
-
operator-controller : Operator Controller
-
permission-check-controller : Permission Check Controller
-
properties-controller : Properties Controller
-
user-settings-controller : User Settings Controller
-
work-queue-controller : Work Queue Controller
2. Resources
2.1. Activity-controller
Activity Controller
2.1.1. List of activities containing and activity variable counts
POST /activities/activityVariableCounts
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
activityVariablesRequest |
activityVariablesRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
422 |
UnProcessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.1.2. Fetches List of activities containing their variable counts
GET /activities/activityVariableCounts
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
eventInfo |
Accept List of materialLotActualId and segmentActualId respectively with comma seperated - Ex:146:252,181:333 |
string |
Query |
eventType |
Type of eventNumbers provided above [all the eventIds should belong to same type] |
enum (UserDefinedEvent) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
422 |
UnProcessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.1.3. activties
GET /activities/ids
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
materialLotActualId |
materialLotActualId |
integer (int64) |
Query |
segmentActualId |
segmentActualId |
integer (int64) |
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
422 |
UnProcessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.1.4. To check form is Custom form
GET /activities/isCustomform
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
materialLotActualId |
materialLotActualId |
integer (int64) |
Query |
segmentActualId |
segmentActualId |
integer (int64) |
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
422 |
UnProcessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.2. Application-tab-controller
Application Tab Controller
2.2.1. Get tabs mapped to appId.
GET /apps/{appId}/tabs
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Path |
appId |
appId |
integer (int64) |
|
Query |
enabled |
enabled |
boolean |
|
Query |
page |
page |
integer (int32) |
|
Query |
size |
size |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< ApplicationTabResponseResults > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.2.2. Get tab details mapped to appId
GET /apps/{appId}/tabs/{tabId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
appId |
appId |
integer (int64) |
Path |
tabId |
tabId |
integer (int64) |
Query |
segmentId |
segmentId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
2.3. Bom-reallocation-genealogy-controller
Bom Reallocation Genealogy Controller
2.3.1. Get reallocation genealogy info
GET /reallocation/genealogy
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
bomItemId |
bomItemId |
integer (int64) |
Query |
segmentId |
segmentId |
integer (int64) |
Query |
sourceLotId |
sourceLotId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< ConsumptionRecordInfo > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.4. Consumption-operations-controller
Consumption Operations Controller
2.4.1. Create a consumption record
POST /consumptionOperations
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
resourceId |
Resource id to validate the permission forconsumption. |
integer (int64) |
Query |
resourceType |
Resource Type to validate the permission forconsumption. |
string |
Body |
consumptionRecord |
consumptionRecord |
Responses
HTTP Code | Description | Schema |
---|---|---|
201 |
OK |
|
400 |
Invalid data supplied. See message for details. |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
2.4.2. Get Consumption lots
GET /consumptionOperations
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
bomItemId |
Consumption records for bomItemId. |
integer (int64) |
|
Query |
id |
ID of consumption record / Component_Id of event_components. |
integer (int64) |
|
Query |
quantityPrecision |
quantityPrecision |
integer (int32) |
|
Query |
quantityRaw |
quantityRaw |
number (double) |
|
Query |
segmentId |
Consumption records for segmentId. |
integer (int64) |
|
Query |
sourceMaterialLotId |
Source Material Lot ID the product being consumed. |
integer (int64) |
|
Query |
targetMaterialLotId |
Target material Lot ID the product being manufactured. |
integer (int64) |
|
Query |
workOrderId |
Consumption records for workOrderId. |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< ConsumptionRecordInfo > array |
400 |
Invalid data supplied. See message for details. |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden |
|
404 |
Not Found |
No Content |
422 |
Unprocessable Entity |
No Content |
503 |
Service Unavailable |
No Content |
2.4.3. Create lot and consume that Lot
POST /consumptionOperations/materialLot
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
resourceId |
Resource id to validate the permission forconsumption. |
integer (int64) |
Query |
resourceType |
Resource Type to validate the permission forconsumption. |
string |
Body |
materialLotConsumptionRequest |
materialLotConsumptionRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
201 |
Created |
|
400 |
Invalid data supplied. See message for details. |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden |
|
404 |
Not Found |
No Content |
422 |
Unprocessable Entity |
No Content |
503 |
Service Unavailable |
No Content |
2.5. Document-management-controller
Document Management Controller
2.5.1. Get document
GET /documents/attachment
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
attachmentName |
attachment Name |
string |
Query |
documentId |
document id |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
400 |
Bad Request |
|
401 |
Unauthorized |
|
500 |
Internal server error |
2.6. Engineering-unit-controller
Engineering Unit Controller
2.6.1. Get All Units By ProductId
GET /engineeringunits
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
engineeringUnitId |
engineeringUnitId |
integer (int64) |
Query |
productId |
productId |
string |
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< MaterialInfo > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.7. External-config-controller
External Config Controller
2.7.1. Get Configurations
GET /v1/configurations
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
actionId |
actionId |
integer (int32) |
|
Query |
actionName |
actionName |
string |
|
Query |
actionTypeId |
actionTypeId |
integer (int32) |
|
Query |
configId |
configId |
integer (int64) |
|
Query |
includeDeleted |
includeDeleted |
boolean |
|
Query |
page |
page |
integer (int32) |
|
Query |
segmentId |
segmentId |
integer (int64) |
|
Query |
size |
size |
integer (int32) |
|
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content, Error retrieving actions |
|
401 |
User Unauthorized |
No Content |
500 |
Internal Server Error |
2.8. Labor-type-controller
Labor Type Controller
2.9. Material-controller
Material Controller
2.9.1. Get all the materials
GET /materials
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< MaterialInfo > array |
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.9.2. Get list of materialLots and their properties
GET /materials/materialLots
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
lotIdentifier |
lot identifier (use event_num/lot_identifier for this property at this time) |
string |
Query |
productId |
Product ID (applied product id) to retrieve properties of materialLots. |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< MaterialInfo > array |
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.9.3. Get product families
GET /materials/productFamilies
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
page |
page |
integer (int32) |
Query |
productId |
productId |
integer (int64) |
Query |
size |
size |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< ProductFamilyPage > array |
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.9.4. Get MaterialLot Status by Id from product service
GET /materials/statuses/{materialLotStatusId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
materialLotStatusId |
MaterialLot Status ID To Get a MaterialLot Status. |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< MaterialLotStatus > array |
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10. Operator-controller
Operator Controller
2.10.1. Query Operations
GET /operations
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
clockedOn |
clockedOn |
boolean |
|
Query |
completedAfter |
completedAfter |
string |
|
Query |
completedBefore |
completedBefore |
string |
|
Query |
equipmentId |
equipmentId |
< integer (int64) > array(multi) |
|
Query |
isCustomDate |
isCustomDate |
boolean |
|
Query |
limitSearchResult |
limitSearchResult |
boolean |
|
Query |
materialLotIdentifier |
materialLotIdentifier |
string |
|
Query |
onHold |
onHold |
boolean |
|
Query |
operationName |
operationName |
string |
|
Query |
orderBy |
orderBy |
string |
|
Query |
page |
Results page you want to retrieve (0..N) |
integer (int32) |
|
Query |
producedMaterialId |
producedMaterialId |
< integer (int64) > array(multi) |
|
Query |
productFamilyId |
productFamilyId |
< integer (int64) > array(multi) |
|
Query |
size |
Number of records per page. |
integer (int32) |
|
Query |
status |
status |
< string > array(multi) |
|
Query |
workOrderId |
workOrderId |
integer (int64) |
|
Query |
workOrderName |
workOrderName |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.10.2. Get the BOMs of particular oparation by work Order ID and segment ID
GET /operations/boms
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
plannedQuantity |
Lot plannedQuantity |
integer (int64) |
Query |
segmentId |
Id of the segment resource |
integer (int64) |
Query |
targetLotId |
Target lot Id of the segment consumed lot |
integer (int64) |
Query |
workOrderId |
Id of the work order resource |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.10.3. Clock on/off an operation
POST /operations/clock
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
204 |
Success |
object |
400 |
Bad Request. |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10.4. Complete of an operation
POST /operations/complete
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
400 |
Bad Request. |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10.5. Operation details
GET /operations/segmentActuals/{segmentActualId}/details
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
segmentActualId |
segmentActualId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.10.6. fetchTargetMaterialLot
GET /operations/segmentActuals/{segmentActualId}/targetMaterialLot
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
segmentActualId |
segmentActualId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
2.10.7. To get unconsumed BOM count in a segment/operation
GET /operations/segmentActuals/{segmentActualId}/unConsumedBomCount
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
segmentActualId |
segmentActualId |
integer (int64) |
Query |
plannedQuantity |
plannedQuantity |
integer (int32) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.10.8. Documents of an operation
GET /operations/segments/{segmentId}/documents
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
segmentId |
segmentId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10.9. Skip an operation
POST /operations/skip
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
204 |
Success |
object |
400 |
Bad Request. |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
422 |
Unprocessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10.10. Units of all lines
GET /operations/units
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< UnitsData > array |
401 |
Unauthorized |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.10.11. Operation
GET /operations/{segmentActualId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
segmentActualId |
segmentActualId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
2.11. Permission-check-controller
Permission Check Controller
2.11.1. checkPermission
GET /checkPermission
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
permissionName |
Permission Scope |
string |
Query |
resourceId |
UnitId or LineId |
integer (int32) |
Query |
resourceType |
Unit or Line |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
boolean |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Internal Server error |
2.12. Properties-controller
Properties Controller
2.12.1. Get Property Details
GET /properties
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
productId |
productId |
integer (int64) |
Query |
routeDefinitionId |
routeDefinitionId |
integer (int64) |
Query |
segmentId |
segmentId |
integer (int64) |
Query |
workOrderId |
workOrderId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not found, properties not available |
|
500 |
Internal Server Error |
|
503 |
Service Unavailable |
2.13. User-settings-controller
User Settings Controller
2.13.1. Create User settings for the logged in user
POST /v2/settings
Responses
HTTP Code | Description | Schema |
---|---|---|
201 |
Created |
|
204 |
No Content, Error retrieving created user settings |
|
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
App ID not found in privilege set |
|
409 |
Conflict, User Setting already exists. Use a PUT to update |
|
500 |
Internal Server Error |
2.13.2. Get User settings for the logged in User
GET /v2/settings
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
appId |
appId |
integer (int32) |
Query |
viewName |
viewName |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not found, no user setting found for the user |
|
500 |
Internal Server Error |
2.13.3. Update User settings for the logged in user
PUT /v2/settings
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not Found, There is no saved User settings for the logged in user |
|
500 |
Internal Server Error |
2.13.4. Delete User settings for the logged in user
DELETE /v2/settings
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
appId |
appId |
integer (int32) |
Query |
viewName |
viewName |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
204 |
Success |
object |
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not Found, User Setting not found |
|
500 |
Internal Server Error |
2.13.5. Get Privilege Sets
GET /v2/settings/apps
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< PrivilegeSet > array |
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not found, no user setting found for the user |
|
500 |
Internal Server Error |
2.14. Work-queue-controller
Work Queue Controller
2.14.1. Get collection of operations by workorders.
GET /workqueue
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
page |
Results page you want to retrieve (0..N) |
integer (int32) |
|
Query |
size |
Number of records per page. |
integer (int32) |
|
Query |
userSettingsOn |
userSettingsOn |
boolean |
|
Query |
workOrderId |
workOrderId |
< integer (int64) > array(multi) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< WorkQueue > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.2. Check a work order and operation’s materialLotActuals eligible to complete.
POST /workqueue/checkEnableComplete
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.3. Complete multiple segmentActuals in a workorder.
POST /workqueue/complete
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< WorkQueue > array |
400 |
Bad Request. |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.4. Get a page of the operations collection.
GET /workqueue/operations
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
equipmentId |
equipmentId |
integer (int64) |
|
Query |
materialLotIdentifier |
materialLotIdentifier |
string |
|
Query |
page |
Results page you want to retrieve (0..N) |
integer (int32) |
|
Query |
producedMaterialId |
producedMaterialId |
integer (int64) |
|
Query |
segmentId |
segmentId |
integer (int64) |
|
Query |
segmentName |
segmentName |
string |
|
Query |
size |
Number of records per page. |
integer (int32) |
|
Query |
workOrderId |
workOrderId |
integer (int64) |
|
Query |
workOrderName |
workOrderName |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.5. Get clocked on and assigned operations collection.
GET /workqueue/queue
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
page |
Results page you want to retrieve (0..N) |
integer (int32) |
|
Query |
size |
Number of records per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.6. RecordQuantity a serialLot operation
POST /workqueue/recordQuantity
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request. |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.7. Get the operations collection by workOrderName or serialNumber or operationName or lotIdentifier.
GET /workqueue/search
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
name |
name |
string |
|
Query |
page |
Results page you want to retrieve (0..N) |
integer (int32) |
|
Query |
size |
Number of records per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< WorkQueue > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
422 |
UnProcessable Entity |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
2.14.8. To get unconsumed BOM count in a segment/operation
POST /workqueue/unConsumedBomCount
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
|
404 |
Not Found |
|
500 |
Internal Server error |
|
503 |
Service Unavailable |
3. Definitions
3.1. ActivityVariableCounts
Name | Schema |
---|---|
activityId |
integer (int64) |
eventId |
integer (int64) |
eventType |
enum (TimeBasedEvent, ProductionEvent, UserDefinedEvent, ProductChangeEvent) |
remainingMandatoryVariablesCount |
integer (int32) |
segmentActualId |
integer (int64) |
totalMandatoryVariablesCount |
integer (int32) |
totalVariablesCount |
integer (int32) |
3.2. ActivityVariablesRequest
Name | Description | Schema |
---|---|---|
operationName |
operationName of the workorder record |
string |
segmentActualActivtyEntries |
segmentActualActivtyEntries details of the Operation |
< SegmentActualActivtyRequest > array |
segmentId |
segmentId of the workorder record |
integer (int64) |
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.3. ActivityVariablesResponse
Name | Schema |
---|---|
segmentActualActivtyResponses |
< SegmentActualActivtyResponse > array |
segmentId |
integer (int64) |
workOrderId |
integer (int64) |
3.4. ApplicationTabDetailResponse
Name | Schema |
---|---|
description |
string |
display_name |
string |
id |
integer (int64) |
standard |
boolean |
tab_config_data |
|
tab_config_expressions |
3.5. ApplicationTabResponseResource
Name | Schema |
---|---|
description |
string |
displayName |
string |
enabled |
boolean |
id |
integer (int64) |
links |
< Link > array |
sequenceOrder |
integer (int32) |
standard |
boolean |
3.6. ApplicationTabResponseResults
Name | Schema |
---|---|
content |
< ApplicationTabResponseResource > array |
links |
< Link > array |
page |
3.8. BomCountRequest
Name | Description | Schema |
---|---|---|
isHeaderCount |
isHeaderCount check the Bom count is for header |
boolean |
processOrderId |
processOrderId of the workorder record |
integer (int64) |
productId |
productId of the workorder record |
integer (int64) |
segmentActuals |
< SegmentActual > array |
|
segmentId |
segmentId of the workorder record |
integer (int64) |
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.9. BomCountResponse
Name | Schema |
---|---|
bomTotalCount |
integer (int64) |
segmentActualBomCount |
< SegmentActualBomCount > array |
segmentId |
integer (int64) |
workOrderId |
integer (int64) |
3.10. BomResponse
Name | Schema |
---|---|
isLastOperation |
boolean |
mesServiceAvailable |
boolean |
plannedLineId |
integer (int32) |
routeBillOfMaterials |
< object > array |
schemaVersion |
integer (int32) |
segmentBillOfMaterials |
< object > array |
3.11. ClockEntry
Name | Description | Schema |
---|---|---|
laborTypeId |
Suggested labor type id |
integer (int64) |
segmentActualId |
segmentActualId id of the workorder |
integer (int64) |
segmentId |
segmentId id of the workorder |
integer (int64) |
status |
status of the lot record |
string |
unitId |
unitId of the workorder |
integer (int64) |
3.12. ClockOnRecord
Name | Schema |
---|---|
clockOffTime |
string (date-time) |
clockOnTime |
string (date-time) |
clockedOn |
boolean |
id |
integer (int64) |
laborTypeId |
integer (int64) |
loggedInUser |
boolean |
operator |
string |
3.13. ClockRequest
Name | Description | Schema |
---|---|---|
clockEntries |
< ClockEntry > array |
|
clockedOn |
Is clocked on of the record |
boolean |
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.15. CompleteRequest
Name | Description | Schema |
---|---|---|
isSerialized |
Product is Serialized/Non-Serialized |
boolean |
materialLotActualId |
materialLotActualId id of the workorder |
integer (int64) |
onHold |
Operation on Hold |
boolean |
requiresClockOn |
Operation requires clockOn |
boolean |
segmentActualId |
segmentActualId id of the workorder |
integer (int64) |
segmentId |
SegmentId id of the workorder |
integer (int64) |
startedOnUnitId |
started On UnitId |
integer (int64) |
status |
Operation Status |
string |
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.16. CompleteRequestV2
Name | Description | Schema |
---|---|---|
nonClocking |
nonClocking of the Operation |
boolean |
operationName |
operationName of the workorder record |
string |
segmentActuals |
SegmentActuals id of the workorder |
< SegmentActualCompleteRequestV2 > array |
segmentId |
SegmentId of the workorder record |
integer (int64) |
workOrderId |
WorkorderId of the workorder record |
integer (int64) |
3.17. ConsumptionRecordInfo
Name | Description | Schema |
---|---|---|
bomItemId |
Bom Item ID |
integer (int64) |
consumedQuantity |
Consumed Quantity |
number (double) |
entryOn |
Lot Entry On |
string (date-time) |
id |
Consumption Record ID / event component ID |
integer (int64) |
links |
< Link > array |
|
lotIdentifier |
Lot Identifier |
string |
productId |
Product ID / Applied Product ID |
integer (int64) |
segmentId |
Segment ID |
integer (int64) |
sourceMaterialLotId |
Source Material Lot ID |
integer (int64) |
targetMaterialLotId |
Target material Lot ID |
integer (int64) |
timeStamp |
Lot Timestamp |
string (date-time) |
unitId |
Unit ID / PU ID |
integer (int64) |
unitOfMeasureId |
Unit of Measre ID |
integer (int64) |
userId |
PA UserId |
integer (int64) |
workOrderId |
Work Order ID |
integer (int64) |
3.18. ConsumptionRecordRequest
Name | Description | Schema |
---|---|---|
bomItemId |
Bom Item ID |
integer (int64) |
consumedQuantity |
Consumed Quantity |
number (double) |
segmentId |
Segment ID |
integer (int64) |
sourceMaterialLotId |
Source Material Lot ID |
integer (int64) |
targetMaterialLotId |
Target material Lot ID |
integer (int64) |
unitOfMeasureId |
Unit of Measre ID |
integer (int64) |
workOrderId |
Work Order ID |
integer (int64) |
3.19. Documents
Name | Schema |
---|---|
routeDocumentReferences |
< object > array |
segmentDocumentReferences |
< object > array |
3.21. ExternalConfigResponse
Name | Description | Schema |
---|---|---|
actionId |
integer (int64) |
|
actionName |
string |
|
actionType |
string |
|
actionTypeId |
integer (int64) |
|
configId |
integer (int64) |
|
createdBy |
string |
|
createdOn |
string |
|
data |
object |
|
deleted |
Example : |
boolean |
id |
integer (int64) |
|
lastModifiedOn |
string |
|
updatedBy |
string |
3.22. ExternalConfigResponsePage
Name | Schema |
---|---|
content |
< ExternalConfigResponse > array |
links |
< Link > array |
page |
3.24. InputParamterRequest
Name | Schema |
---|---|
custom_property |
boolean |
input_mapping_key |
string |
input_parameter_data |
string |
input_parameter_id |
integer (int64) |
input_parameter_value |
string |
property_definition_id |
string |
property_definition_initial_id |
string |
property_definition_initial_value |
string |
property_group_id |
string |
3.25. Link
Name | Description | Schema |
---|---|---|
href |
string |
|
rel |
string |
|
templated |
Example : |
boolean |
3.26. MaterialInfo
Name | Schema |
---|---|
description |
string |
productCode |
string |
productFamilyId |
integer (int64) |
productId |
integer (int64) |
3.27. MaterialLotActualRecord
Name | Schema |
---|---|
clockedOnRecords |
< ClockOnRecord > array |
completedBy |
string |
completedOn |
string (date-time) |
completedQuantity |
integer (int32) |
holdOn |
string (date-time) |
initialPlannedQuantity |
integer (int32) |
materialLotActualId |
integer (int64) |
materilLotActualName |
string |
materilLotActualStatus |
string |
oldPlannedQuantity |
integer (int32) |
onHold |
boolean |
onHoldBy |
string |
plannedQuantity |
integer (int32) |
productOverThreshold |
integer (int64) |
productUnderThreshold |
integer (int64) |
recordedQuantity |
integer (int32) |
remainingQuantity |
integer (int32) |
segmentActualId |
integer (int64) |
segmentActualStatus |
string |
skippedBy |
string |
skippedOnTime |
string (date-time) |
startedOn |
string (date-time) |
startedOnUnitId |
integer (int64) |
totalCompletedQuantity |
integer (int32) |
unreadiedBy |
string |
unreadiedOnTime |
string (date-time) |
3.28. MaterialLotConsumptionRequest
Name | Description | Schema |
---|---|---|
bomItemId |
Bom Item ID |
integer (int64) |
initialQuantity |
Initial Quantity of LOT |
number (double) |
lotIdentifier |
New Material Lot Identifier |
string |
productId |
ProductId / Applied ProductId of new LOT |
integer (int64) |
quantity |
Consumed Quantity |
number (double) |
segmentId |
Segment ID |
integer (int64) |
targetMaterialLotId |
Target material Lot ID |
integer (int64) |
unitId |
Unit Id |
integer (int64) |
unitOfMeasureId |
Unit of Measre ID |
integer (int64) |
workOrderId |
Work Order ID |
integer (int64) |
3.29. MaterialLotEnableCompleteRequest
Name | Description | Schema |
---|---|---|
flagType |
flagType of the Request |
integer (int32) |
operationName |
operationName of the workorder record |
string |
processOrderId |
processOrderId of the workorder record |
integer (int64) |
productId |
productId of the workorder record |
integer (int64) |
segmentActuals |
segmentActuals of te Operation |
< SegmentActual > array |
segmentId |
segmentId of the workorder record |
integer (int64) |
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.30. MaterialLotInfoResult
Name | Description | Schema |
---|---|---|
availableForConsumption |
Is Available For Consumption |
boolean |
currentQuantity |
Current Quantity of lot / Final Dimension X |
number (float) |
id |
Material Lot ID / Event ID |
integer (int64) |
initialQuantity |
Initial Quantity of lot / Initial Dimension X |
number (double) |
links |
< Link > array |
|
lotIdentifier |
Lot Identifier / Event Num |
string |
processOrderId |
ID of process order / pp_id |
integer (int64) |
productId |
Product ID / Applied Product ID |
integer (int64) |
statusId |
Lot status / Event Status |
integer (int64) |
unitId |
Unit ID / PU ID |
integer (int64) |
unitOfMeasureId |
Unit Of Measure ID |
integer (int64) |
3.31. MaterialLotInfoResults
Name | Schema |
---|---|
content |
< MaterialLotInfoResult > array |
links |
< Link > array |
page |
3.32. MaterialLotStatus
Name | Description | Schema |
---|---|---|
description |
MaterialLot Status Description |
string |
id |
MaterialLot Status ID / Event Status |
integer (int64) |
isGoodStatus |
Is Quality Good |
boolean |
isInventoryStatus |
Is Inventory |
boolean |
isProductionStatus |
Is Production |
boolean |
3.33. OperationDetails
Name | Description | Schema |
---|---|---|
actualEndDate |
actualEndDate of the work order |
string (date-time) |
actualStartDate |
actualStartDate of the work order |
string (date-time) |
allowManualSkip |
Allow ManualSkip Optional Operation of a workOrder |
boolean |
clockedOnRecords |
Clocked on users |
< ClockOnRecord > array |
completedBy |
Completed user |
string |
completedOn |
Completed Operation time |
string (date-time) |
createdBy |
Work order created user |
string |
defaultRecordQuantity |
defaultRecordQuantity flag of remaining quantity |
boolean |
holdOn |
OnHold Operation time |
string (date-time) |
id |
integer (int64) |
|
isSerialized |
Product is Serialized/Non-Serialized |
boolean |
lotCompletedQuantity |
Lot Completed Quantity |
integer (int32) |
lotIdentifier |
LotIdentifier name of the workorder |
string |
lotInitialPlannedQuantity |
Lot Initial Planned Quantity |
integer (int32) |
lotPlannedQuantity |
Lot Planned Quantity |
integer (int32) |
lotRemainingQuantity |
Lot Remaining Quantity |
integer (int32) |
materialLotActualId |
LotIdentifier id of the workorder |
integer (int64) |
onHold |
On Hold state of the Operation |
boolean |
onHoldBy |
OnHold user |
string |
operationDesc |
Segment description of the work order |
string |
operationName |
Segment Identifier of the work order |
string |
plannedEndDate |
Work order planned end date |
string (date-time) |
plannedStartDate |
Work order planned start date |
string (date-time) |
plannedUnitIds |
Operation planned on Units |
< integer (int64) > array |
productCode |
Product code of the workorder |
string |
productDesc |
Product Decription |
string |
productFamilyDesc |
Product family Description of the workorder |
string |
productFamilyId |
Product family id the workorder |
integer (int64) |
productId |
Product id of the workorder |
integer (int64) |
productOverThreshold |
Over Threshold value of a product |
integer (int32) |
productOverThresholdPercentage |
Over Threshold percentage of a product |
number (double) |
productUnderThreshold |
Under Threshold value of a product |
integer (int32) |
productUnderThresholdPercentage |
Under Threshold percentage of a product |
number (double) |
requiresClockOn |
NonClocking/Clocking Operation of a workOrder |
boolean |
routeDetails |
Route Object |
|
segmentActualId |
Segment actual id |
integer (int64) |
segmentId |
Segment id of the work order |
integer (int64) |
segmentStatus |
Segment status |
string |
skipIfSuccessorStarted |
Operation of a workOrder can be skipped |
boolean |
startedOn |
startedOn Operation time |
string (date-time) |
startedOnUnitId |
Operation Started on Unit |
integer (int64) |
suggestedLaborTypes |
Suggested labor types for the operation |
< integer (int32) > array |
workOrderId |
Id of work order |
integer (int64) |
workOrderName |
Name of the work order |
string |
workOrderPriority |
Priority of the work order |
integer (int32) |
workorderAvailable |
Still available(not completed) quantity |
integer (int32) |
workorderCompleted |
Completed quantity of the work order |
integer (int32) |
workorderQuantity |
Total quantity of the work order |
integer (int32) |
3.34. OperationPage
Name | Schema |
---|---|
content |
< Operations > array |
links |
< Link > array |
page |
3.35. Operations
Name | Description | Schema |
---|---|---|
actualEndDate |
actualEndDate of the work order |
string (date-time) |
actualStartDate |
actualStartDate of the work order |
string (date-time) |
allowManualSkip |
Allow ManualSkip Optional Operation of a workOrder |
boolean |
clockedOnRecords |
Clocked on users |
< ClockOnRecord > array |
completedBy |
Completed user |
string |
completedOn |
Completed Operation time |
string (date-time) |
holdOn |
OnHold Operation time |
string (date-time) |
id |
integer (int64) |
|
isSerialized |
Product is Serialized/Non-Serialized |
boolean |
links |
< Link > array |
|
lotCompletedQuantity |
Lot Completed Quantity |
integer (int32) |
lotIdentifier |
LotIdentifier name of the workorder |
string |
lotInitialPlannedQuantity |
Lot Initial Planned Quantity |
integer (int32) |
lotPlannedQuantity |
Lot Planned Quantity |
integer (int32) |
lotRemainingQuantity |
Lot Remaining Quantity |
integer (int32) |
materialLotActualId |
LotIdentifier id of the workorder |
integer (int64) |
onHold |
On Hold state of the Operation |
boolean |
onHoldBy |
OnHold user |
string |
operationDesc |
Segment description of the work order |
string |
operationName |
Segment Identifier of the work order |
string |
plannedEndDate |
plannedEndDate of the work order |
string (date-time) |
plannedStartDate |
plannedStartDate of the work order |
string (date-time) |
plannedUnitIds |
Operation planned on Units |
< integer (int64) > array |
productCode |
Product code of the workorder |
string |
productDesc |
Product desc of the workorder |
string |
productFamilyDesc |
Product family Description of the workorder |
string |
productFamilyId |
Product family id the workorder |
integer (int64) |
productId |
Product id of the workorder |
integer (int64) |
productOverThreshold |
Over Threshold value of a product |
integer (int32) |
productOverThresholdPercentage |
Over Threshold percentage of a product |
number (double) |
productUnderThreshold |
Under Threshold value of a product |
integer (int32) |
productUnderThresholdPercentage |
Under Threshold percentage of a product |
number (double) |
requiresClockOn |
NonClocking/Clocking Operation of a workOrder |
boolean |
routeDetails |
Route Object |
|
segmentActualId |
Segment actual id |
integer (int64) |
segmentId |
Segment id of the work order |
integer (int64) |
segmentStatus |
Segment status |
string |
skipIfSuccessorStarted |
Operation of a workOrder can be skipped |
boolean |
startedOn |
startedOn Operation time |
string (date-time) |
startedOnUnitId |
Operation Started on Unit |
integer (int64) |
suggestedLaborTypes |
Suggested labor types for the operation |
< integer (int32) > array |
workOrderId |
Id of work order |
integer (int64) |
workOrderName |
Name of the work order |
string |
workOrderPriority |
Priority of the work order |
integer (int32) |
3.36. PageMetadata
Name | Schema |
---|---|
number |
integer (int64) |
size |
integer (int64) |
totalElements |
integer (int64) |
totalPages |
integer (int64) |
3.37. PrivilegeSet
Name | Schema |
---|---|
category |
string |
description |
string |
displayName |
string |
icon |
string |
id |
integer (int32) |
scope |
string |
3.38. ProductFamily
Name | Description | Schema |
---|---|---|
description |
The product family’s description |
string |
id |
The unique Id of the product family |
integer (int64) |
links |
< Link > array |
3.39. ProductFamilyPage
Name | Schema |
---|---|
content |
< ProductFamily > array |
links |
< Link > array |
page |
3.40. PropertiesResponse
Name | Schema |
---|---|
materialProperties |
< PropertyResponseMaterial > array |
routeLevelProperties |
< string, < PropertyResponse > array > map |
segmentProperties |
< string, < PropertyResponse > array > map |
3.41. PropertyResponse
Name | Schema |
---|---|
displayName |
string |
propertyCategoryId |
string |
propertyCategoryName |
string |
propertyDataType |
string |
propertyDataTypeId |
integer (int32) |
propertyDefinitionId |
string |
propertyGroupId |
string |
propertyGroupName |
string |
propertyName |
string |
propertyValue |
string |
required |
boolean |
segmentId |
integer (int64) |
uomCode |
string |
uomId |
integer (int32) |
3.42. PropertyResponseMaterial
Name | Schema |
---|---|
displayName |
string |
productId |
integer (int64) |
propertyCategoryId |
string |
propertyCategoryName |
string |
propertyDataType |
string |
propertyDataTypeId |
integer (int32) |
propertyDefinitionId |
string |
propertyGroupId |
string |
propertyGroupName |
string |
propertyName |
string |
propertyValue |
string |
required |
boolean |
uomCode |
string |
uomId |
integer (int32) |
3.43. RecordQuantityEntryRequest
Name | Description | Schema |
---|---|---|
recordQuantity |
RecordQuantity of a operation serailLot |
integer (int32) |
segmentActualId |
SegmentActualId of a operation serialLot |
integer (int64) |
status |
Status of the lot record |
string |
3.44. RecordQuantityEntryResponse
Name | Description | Schema |
---|---|---|
remainingQuantity |
RemainingQuantity of a operation serailLot |
integer (int32) |
segmentActualId |
SegmentActualId of a operation serialLot |
integer (int64) |
3.45. RecordQuantityRequest
Name | Description | Schema |
---|---|---|
completeLotIdentifer |
complete LotIdentifer of the Operation |
boolean |
recordQuantityEntries |
RecordQuantityEntries of the workorder operation |
< RecordQuantityEntryRequest > array |
segmentId |
SegmentId id of the workorder |
integer (int64) |
startedOnUnitId |
startedOnUnitId of the Operation |
integer (int64) |
workOrderId |
SorkorderId of the workorder record |
integer (int64) |
3.46. RecordQuantityResponse
Name | Description | Schema |
---|---|---|
recordQuantityEntryResponses |
recordQuantityEntryResponses of the workorder operation |
< RecordQuantityEntryResponse > array |
segmentId |
SegmentId id of the workorder |
integer (int64) |
workOrderId |
workOrderId of the workorder record |
integer (int64) |
3.47. RouteResponse
Name | Description | Schema |
---|---|---|
lastModifiedOn |
Route lastModifiedOn |
string (date-time) |
revision |
Route revision |
integer (int32) |
routeDefinitionId |
Route DefinitionId |
integer (int64) |
routeName |
Route name |
string |
3.48. SegmentActual
Name | Description | Schema |
---|---|---|
lotIdentifier |
lotIdentifier of materialLotActual |
string |
materialLotActualId |
materialLotActualId id of the SegmentActual |
integer (int64) |
plannedQuantity |
plannedQuantity of the Lot |
integer (int32) |
segmentActualId |
SegmentActualId id of the workorder |
integer (int64) |
startedOnUnitId |
startedOnUnitId of the Operation |
integer (int64) |
3.49. SegmentActualActivityVariableResponse
Name | Schema |
---|---|
activityId |
integer (int64) |
remainingMandatoryVariablesCount |
integer (int32) |
totalMandatoryVariablesCount |
integer (int32) |
totalVariablesCount |
integer (int32) |
3.50. SegmentActualActivtyRequest
Name | Description | Schema |
---|---|---|
clockedOn |
clocked on of the activity record |
boolean |
lotIdentifier |
lotIdentifier of materialLotActual |
string |
materialLotActualId |
materialLotActualId id of the SegmentActual |
integer (int64) |
segmentActualId |
SegmentActualId id of the workorder |
integer (int64) |
startedOnUnitId |
startedOnUnitId of the Operation |
integer (int64) |
3.51. SegmentActualActivtyResponse
Name | Schema |
---|---|
activities |
< SegmentActualActivityVariableResponse > array |
segmentActualId |
integer (int64) |
3.52. SegmentActualBomCount
Name | Schema |
---|---|
bomCount |
integer (int64) |
segmentActualId |
integer (int64) |
3.53. SegmentActualCompleteRequestV2
Name | Description | Schema |
---|---|---|
lotIdentifier |
lotIdentifier of materialLotActual |
string |
materialLotActualId |
materialLotActualId id of the workorder |
integer (int64) |
segmentActualId |
segmentActualId id of the workorder |
integer (int64) |
segmentActualStatus |
segmentActualStatus of the lot record |
string |
startedOnUnitId |
startedOnUnitId of the Operation |
integer (int64) |
3.54. SkipRecordEntry
Name | Description | Schema |
---|---|---|
segmentActualId |
SegmentActualId id of the workorder |
integer (int64) |
startedOnUnitId |
started On UnitId |
integer (int64) |
status |
Status of the lot record |
string |
3.55. SkipRequest
Name | Description | Schema |
---|---|---|
segmentId |
segmentId of the workorder record |
integer (int64) |
skipEntries |
< SkipRecordEntry > array |
|
workOrderId |
workorderId of the workorder record |
integer (int64) |
3.56. TabConfigData
Name | Schema |
---|---|
authentication |
boolean |
enable_seriallot |
boolean |
external_url |
string |
tab_input_parameters |
< InputParamterRequest > array |
3.58. UnitsData
Name | Description | Schema |
---|---|---|
assetId |
The assetId of the unit |
integer (int64) |
lineId |
The lineId of the unit |
integer (int64) |
lineName |
The line name of the unit |
string |
name |
The name of the unit |
string |
3.59. UserSettingRequest
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
The application specific settings, Eg:- 'App Name' : {'property1' : 'value' , 'property2' : 'value'} } |
object |
viewName |
string |
3.60. UserSettingResource
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
object |
|
defaultSetting |
Example : |
boolean |
links |
< Link > array |
|
viewName |
string |
3.61. WorkQueue
Name | Description | Schema |
---|---|---|
actualEndDate |
actualEndDate of the work order |
string (date-time) |
actualStartDate |
actualStartDate of the work order |
string (date-time) |
allowManualSkip |
Allow ManualSkip Optional Operation of a workOrder |
boolean |
appliesTo |
appliesTo of the work order operation |
|
assignedToUser |
user assigned operations |
boolean |
completedOn |
completedOnDate of the work order |
string (date-time) |
defaultRecordQuantity |
defaultRecordQuantity of the work order operation |
boolean |
id |
integer (int64) |
|
materialLotActualsRecords |
materialLotActuals on a workOrder |
< MaterialLotActualRecord > array |
operationDesc |
Segment description of the work order |
string |
operationName |
Segment Identifier of the work order |
string |
plannedEndDate |
plannedEndDate of the work order |
string (date-time) |
plannedQuantity |
Planned Quantity of the work order |
integer (int32) |
plannedStartDate |
plannedStartDate of the work order |
string (date-time) |
plannedUnitIds |
Operation planned on Unit Ids |
< integer (int64) > array |
plannedUnits |
Operation planned on Units |
< UnitsData > array |
processOrderId |
processOrderId of the work order |
integer (int64) |
productCode |
Product id of the workorder |
string |
productDesc |
Product desc of the workorder |
string |
productFamilyDesc |
ProductFamily desc of the workorder |
string |
productId |
Product id of the workorder |
integer (int64) |
productIsSerialized |
Product isSerialized of the workorder |
boolean |
productOverThresholdPercentage |
number (double) |
|
productUnderThresholdPercentage |
number (double) |
|
productionLineId |
productionLineId of the work order |
integer (int64) |
requiresClockOn |
requiresClockOn of the work order operation |
boolean |
routeDetails |
Route Object |
|
segmentId |
Segment id of the work order |
integer (int64) |
segmentStatus |
Segment status |
string |
skipIfSuccessorStarted |
Operation of a workOrder can be skipped |
boolean |
startedOn |
startedOnDate of the work order |
string (date-time) |
startedOnUnitId |
startedOnUnitId of the operation |
integer (int64) |
suggestedLaborTypes |
suggestedLaborTypes |
< integer (int32) > array |
workOrderId |
Id of work order |
integer (int64) |
workOrderName |
Name of the work order |
string |
workOrderPriority |
Priority of the work order |
integer (int32) |
4. Security
4.1. access_token
Type : oauth2
Flow : accessCode
Token URL : https://localhost:8443/uaa/oauth/authorize
Token URL : https://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.2. resource_owner
Type : oauth2
Flow : password
Token URL : https://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.3. implicit_grant
Type : oauth2
Flow : implicit
Token URL : https://localhost:8443/uaa/oauth/authorize
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.4. client_creds
Type : oauth2
Flow : application
Token URL : https://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |