1. Overview
Microservice containing the business logic for managing productionmetrics-app-service.
1.2. Tags
-
asset-controller : Asset Controller
-
availability-controller : Availability Controller
-
common-plant-controller : Common Plant Controller
-
metrics-controller : Metrics Controller
-
performance-controller : Performance Controller
-
quality-controller : Quality Controller
-
reports-metrics-controller : Reports Metrics Controller
-
user-settings-controller : User Settings Controller
2. Resources
2.1. Asset-controller
Asset Controller
2.1.1. Fetch all Departments in the Plant Floor
GET /production-metrics-viewer/departments
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.1.2. Fetch lines based on the departmentId provided. If departmentId is not provided, it will return all lines in all departments
GET /production-metrics-viewer/lines
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.1.3. Fetch units based on the lineId provided. If lineId is not provided, it will return all units in all lines
GET /production-metrics-viewer/units
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.2. Availability-controller
Availability Controller
2.2.1. Fetch all downtime categories based on the specified unitIds and selected timerange
GET /production-metrics-viewer/categories
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
oeeParameter |
Define the type of downtime whether it is Availability, Performance or Quality, required in case OEE mode of unit is time based. |
enum (Availability, Quality, Performance) |
|
Query |
showTopNBars |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int64) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Comma separated unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.2.2. Fetch the downtime records based on the specified unitIds and selected timerange
GET /production-metrics-viewer/events/line/{lineId}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Path |
lineId |
Line Id |
integer (int32) |
|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
machineId |
Comma separated unit ids |
string |
|
Query |
oeeParameter |
Define the type of downtime whether it is Availability, Performance or Quality, required in case OEE mode of unit is time based. |
string |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.2.3. Fetch the downtime records based on the specified unit and timeselection
GET /production-metrics-viewer/events/machine/{equipmentId}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Path |
equipmentId |
Unit Id |
integer (int32) |
|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
oeeParameter |
Define the type of downtime whether it is Availability, Performance or Quality, required in case OEE mode of unit is time based. |
string |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.2.4. Fetch Mean Time To Repair (MTTR) and Mean Time Before Failure (MTBF) based on the specified unitIds and selected timerange
GET /production-metrics-viewer/mttr-mtbf
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
lineId |
Line Id |
integer (int32) |
|
Query |
oeeParameter |
Define the type of downtime whether it is Availability, Performance or Quality, required in case OEE mode of unit is time based. |
enum (Availability, Quality, Performance) |
|
Query |
showTopNBars |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.2.5. Fetch all downtime Reasons based on the specified unitIds and selected timerange
GET /production-metrics-viewer/reasons
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
oeeParameter |
Define the type of downtime whether it is Availability, Performance or Quality, required in case OEE mode of unit is time based. |
string |
|
Query |
showTopNBars |
Number of top level reasons (reason1) to be returned, default to 5 |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.3. Common-plant-controller
Common Plant Controller
2.3.1. Returns list of Crews configured in the PlantApps
GET /production-metrics-viewer/crews
2.3.2. Return list of Shifts Configured in the PlantApps
GET /production-metrics-viewer/shifts
2.3.3. Fetch the timerange based on the selected timeselection
GET /production-metrics-viewer/time-selection
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
equipmentId |
Comma separated unit ids |
< string > array(multi) |
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
Query |
timeSelection |
Time selection values |
integer (int32) |
2.4. Metrics-controller
Metrics Controller
2.4.1. Fetch the values of OEE, Quality, Performance and Availability based on the specified equipmentType and timeselection
GET /production-metrics-viewer
Caution
|
operation.deprecated |
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Unit Id |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
filterType |
Filter Type. This is not being used and will be deprecated soon. |
integer (int32) |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.4.2. Fetch the values of OEE, Quality, Performance and Availability based on the specified equipmentType and timeselection
GET /production-metrics-viewer/counts/downtimes
Caution
|
operation.deprecated |
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
filterType |
Filter Type. This is not being used and will be deprecated soon. |
integer (int32) |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
resultType |
Result Type - 0 with summarize = 0 to get KPI for lines, 0 with summarize = 1 to get combined KPI of all specified units , 1 to get KPI for lines. Not required in case of Unit equipment type |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.4.3. Fetch the values of OEE, Quality, Performance and Availability based on the specified equipmentType and timeselection
GET /production-metrics-viewer/counts/downtimes/v2
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
filterType |
Filter Type. This is not being used and will be deprecated soon. |
integer (int32) |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
resultType |
Result Type - 0 with summarize = 0 to get KPI for lines, 0 with summarize = 1 to get combined KPI of all specified units , 1 to get KPI for lines. Not required in case of Unit equipment type |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.4.4. Fetch ideal production, net production, production amount based on the timeselection
GET /production-metrics-viewer/counts/parts
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
machineId |
Comma separated unit ids |
integer (int32) |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.4.5. Fetch the values of OEE, Quality, Performance and Availability based on the specified equipmentType and timeselection
GET /production-metrics-viewer/v2
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
ascDesc |
0 for sort by OEE percentage, 1 for sort by PerformanceRate, 2 for sort by QualityRate, 3 for sort by AvailableRate and 4 for sort by UnitDescription |
integer (int32) |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Unit Id |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
filterType |
Filter Type. This is not being used and will be deprecated soon. |
integer (int32) |
|
Query |
pageNum |
Fetch the Nth page records |
integer (int32) |
|
Query |
pageSize |
Number of records per page, from 1 to 500 |
integer (int32) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.5. Performance-controller
Performance Controller
2.5.1. Fetch categories for performance based on the Unitlist, Timeselection, ShowtopNBars, FilterNPT
GET /production-metrics-viewer/performance/categories
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int64) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.5.2. Fetch reasons for Speed Loss Breakdown based on the Unitlist, Timeselection, ShowtopNBars, FilterNPT
GET /production-metrics-viewer/performance/reasons
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Number of top level reasons (reason1) to be returned, default to 5 |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.6. Quality-controller
Quality Controller
2.6.1. Fetchs reasons,categories and Mean Amount Per Event (MAPE) and Mean Amount Between Events(MABE) based on Unitlist, Timeselection
GET /production-metrics-viewer/quality
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
calculateMapeMabe |
Whether to calculate and include mape mabe in the response |
boolean |
|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Number of top level reasons (reason1) to be returned, default to 5 |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
2.6.2. Fetch categories for scrap breakdown based on Unitlist, Timeselection
GET /production-metrics-viewer/quality/categories
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.6.3. Mean Amount Per Event (MAPE) and Mean Amount Between Events(MABE) based on the specified unitIds and selected timerange
GET /production-metrics-viewer/quality/mape-mabe
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.6.4. Fetch reasons for scrap breakdown based on Unitlist, Timeselection
GET /production-metrics-viewer/quality/reasons
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
showTopNBars |
Number of top level reasons (reason1) to be returned, default to 5 |
integer (int64) |
|
Query |
sortOrder |
Sort order by KPI, 1 - Performance 2 - Quality 3 - Availability |
integer (int64) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
|
Query |
toggle |
Please leave this field blank, This parameter is not being used. It will be deprecated later. |
integer (int64) |
|
Query |
unitList |
Semicolon separated list of unit ids |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7. Reports-metrics-controller
Reports Metrics Controller
2.7.1. Fetches the KPI values including OEE, Quality, Performance and Availability based on the timeselection, equipmentIds
GET /production-reports-viewer/machines/oee/summary
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
summarize |
If true, summarizes all the KPI values including OEE, Quality, Performance and Availability |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7.2. Fetches the oeeMode status for calculating product oee summary
GET /production-reports-viewer/oee/mode
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7.3. Fetches the KPI values including OEE, Quality, Performance and Availability based on the timeselection, equipmentIds
GET /production-reports-viewer/oee/summary
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7.4. Fetches the Order OEE summary based on the timeselection, equipmentIds
GET /production-reports-viewer/order
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
groupBy |
Group results by 1 for No grouping, 2 for Shift , 3 for Crew , 4 for Path |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7.5. Fetches the Product OEE summary based on the timeselection, equipmentIds
GET /production-reports-viewer/product
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
equipmentId |
Comma separated unit ids |
string |
|
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
|
Query |
filterNpt |
Include Non productive time when set to false and exclude it when set to true. |
boolean |
|
Query |
groupBy |
Group results by 1 for No grouping, 2 for Shift , 3 for Crew , 4 for Path |
integer (int32) |
|
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
|
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.7.6. Fetches the Production Status details based on the timeselection, equipmentIds
GET /production-reports-viewer/production-status
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
endTime |
End time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
Query |
equipmentId |
Comma separated unit ids |
string |
Query |
equipmentType |
Type of the equipment - 1 for Units and 2 for Lines. Based on equipmentType it will either return Unit based Kpi or Line based Kpi for the specified unitIds |
integer (int32) |
Query |
groupBy |
Group results by 1 for No grouping, 2 for Shift , 3 for Crew , 4 for Path |
integer (int32) |
Query |
pageNum |
Fetch the Nth page records |
string |
Query |
pageSize |
Number of records per page, from 1 to 500 |
string |
Query |
pathList |
Comma separated list of paths |
string |
Query |
startTime |
Start time in ISO-8601 format (YYYY-MM-DDThh:mm:ssZ), in case of custom time selection. |
string (date-time) |
Query |
timeSelection |
Time selection values |
integer (int32) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
204 |
No Content |
|
404 |
Not Found |
No Content |
500 |
Internal Server Error |
No Content |
2.8. User-settings-controller
User Settings Controller
2.8.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.8.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.8.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.8.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.8.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 |
3. Definitions
3.1. AssetInfo
Name | Schema |
---|---|
assetId |
integer (int64) |
assetType |
string |
identifier |
integer (int64) |
name |
string |
3.2. AssetMetricData
Name | Schema |
---|---|
availableRate |
number (double) |
line |
string |
lineAssets |
< AssetInfo > array |
lineId |
integer (int32) |
oeeMode |
integer (int32) |
percentOEE |
number (double) |
performanceRate |
number (double) |
qualityRate |
number (double) |
unitDesc |
string |
unitId |
integer (int32) |
unitsCount |
integer (int32) |
3.3. AssetMetricData1Resource
Name | Schema |
---|---|
content |
< Resource«AssetMetricData» > array |
links |
< Link > array |
page |
3.4. AssetMetricDataPagedResource
Name | Schema |
---|---|
assetMetricDataList |
< AssetMetricData > array |
links |
< Link > array |
pageNum |
integer (int32) |
pageSize |
integer (int32) |
remainingPages |
integer (int32) |
3.5. AssetMetricDataResource
Name | Schema |
---|---|
availableRate |
number (double) |
line |
string |
lineAssets |
< AssetInfo > array |
lineId |
integer (int32) |
links |
< Link > array |
oeeMode |
integer (int32) |
percentOEE |
number (double) |
performanceRate |
number (double) |
qualityRate |
number (double) |
unitDesc |
string |
unitId |
integer (int32) |
unitsCount |
integer (int32) |
3.6. AvailabilityCategoryDistribution
Name | Schema |
---|---|
events |
integer (int32) |
name |
string |
totalTime |
number (float) |
3.7. AvailabilityCategoryResource
Name | Schema |
---|---|
categoryByDuration |
< AvailabilityCategoryDistribution > array |
categoryByEvent |
< AvailabilityCategoryDistribution > array |
links |
< Link > array |
3.8. AvailabilityDistribution
Name | Description | Schema |
---|---|---|
events |
The events data of this availability distribution |
integer (int32) |
faults |
The faults data of this availability distribution |
string |
mtbf |
The mean time between failure of this availability distribution |
string |
mttr |
The mean time to repair of this availability distribution in hh:mm:ss format |
string |
name |
The Level name of this availability distribution |
string |
quality |
The quality data of this availability distribution |
string |
totalTime |
The total time duration for this availability distribution |
number (float) |
3.9. AvailabilitySummary1Resource
Name | Schema |
---|---|
links |
< Link > array |
location |
< AvailabilityDistribution > array |
reason1 |
< AvailabilityDistribution > array |
3.10. CrewsResource
Name | Description | Schema |
---|---|---|
crewDesc |
The list of Crew, when the downtime occurred |
< string > array |
links |
< Link > array |
3.11. DepartmentsResource
Name | Schema |
---|---|
depts |
< Resource«AssetInfo» > array |
links |
< Link > array |
3.15. LineAssetsResource
Name | Schema |
---|---|
line |
< Resource«AssetInfo» > array |
links |
< Link > array |
3.16. LineDistributionResponseResource
Name | Schema |
---|---|
assetMetrics |
< AssetMetricData > array |
downtimeCategories |
< DowntimeCategory > array |
eventEndTime |
string |
eventEpochEndTime |
integer (int64) |
eventEpochStartTime |
integer (int64) |
eventStartTime |
string |
lineDowntimeByReasons |
< LineDowntimeData > array |
links |
< Link > array |
3.17. LineDowntimeData
Name | Schema |
---|---|
category |
string |
crewDesc |
string |
detailId |
integer (int32) |
duration |
number (float) |
endTime |
string |
fault |
string |
location |
string |
reason1 |
string |
reason2 |
string |
reason3 |
string |
reason4 |
string |
shiftDesc |
string |
startTime |
string |
unit |
string |
unitId |
integer (int32) |
3.18. LineOeeDataset
Name | Description | Schema |
---|---|---|
availableRate |
The available rate of this equipment data set |
number (float) |
line |
The line description of this equipment data set |
string |
lineId |
The line id of this equipment data set |
integer (int32) |
lineStatus |
The line status of this equipment data set |
integer (int32) |
percentOee |
The percent order equipment efficiency of this equipment data set |
number (float) |
performanceRate |
The performance rate of this equipment data set |
number (float) |
qualityRate |
The quality rate of this equipment data set |
number (float) |
unitDesc |
The unit description of this equipment data set |
string |
unitId |
The unit id of this equipment data set |
string |
3.19. Link
Name | Description | Schema |
---|---|---|
href |
string |
|
rel |
string |
|
templated |
Example : |
boolean |
3.20. OeeDetailedTrackInfo
Name | Schema |
---|---|
availabilityInfo |
|
qualityInfo |
|
speedInfo |
3.21. OeeGrouping
Name | Description | Schema |
---|---|---|
data |
The oee details list of this oee grouping |
< OverallOeeDetails > array |
groupName |
The title of this oee grouping |
string |
3.22. OeeModeInfoResource
Name | Schema |
---|---|
availableRate |
string |
links |
< Link > array |
oeeMode |
string |
percentOee |
string |
performanceRate |
string |
qualityRate |
string |
3.23. OeeSummaryResource
Name | Schema |
---|---|
links |
< Link > array |
oeeSummarySet |
< LineOeeDataset > array |
3.24. OeeTrackInfo
Name | Schema |
---|---|
actual |
number (float) |
lost |
number (float) |
planned |
number (float) |
3.25. OverallOeeDetails
Name | Description | Schema |
---|---|---|
AvailableRate |
The available rate of this overall OEE details |
string |
DeptId |
The department id of this overall OEE details |
integer (int32) |
Id |
The unit id of this overall OEE details |
string |
LineId |
The line id of this overall OEE details |
integer (int32) |
Name |
The name of this overall OEE details |
string |
PathId |
The path id of this overall OEE details |
integer (int32) |
PercentOee |
The percent oee of this overall OEE details |
string |
PerformanceRate |
The performance rate id of this overall OEE details |
string |
QualityRate |
The quality rate of this overall OEE details |
string |
Status |
The status of this overall OEE details |
string |
groupIdentifier |
The group identifiers of this overall OEE details |
string |
oeeDetailedTrackInfo |
The oee deataied track information of this overall OEE details |
|
oeeMode |
The oee mode of this overall OEE details |
string |
uom |
The unit of measure of this overall OEE details |
string |
3.26. OverallUnitOEEResource
Name | Schema |
---|---|
kpi |
< OverallOeeDetails > array |
links |
< Link > array |
3.27. PageMetadata
Name | Schema |
---|---|
number |
integer (int64) |
size |
integer (int64) |
totalElements |
integer (int64) |
totalPages |
integer (int64) |
3.28. PerformanceCategoryDistribution
Name | Schema |
---|---|
events |
integer (int32) |
name |
string |
totalTime |
number (float) |
3.29. PerformanceCategoryResource
Name | Schema |
---|---|
categoryByDuration |
< PerformanceCategoryDistribution > array |
categoryByEvent |
< PerformanceCategoryDistribution > array |
3.30. PerformanceDistribution
Name | Description | Schema |
---|---|---|
efficiencyStatistics |
The efficiency statistics of this performance distribution |
number (float) |
events |
The events of this performance distribution |
integer (int32) |
faultPercent |
The fault percent of this performance distribution |
number (float) |
mtbf |
The mean time before failure of this performance distribution |
string |
mttr |
The mean time to repair of this performance distribution |
string |
name |
The name of this performance distribution |
string |
performanceLoss |
The performance loss of this performance distribution |
number (float) |
rateLoss |
The rate loss of this performance distribution |
number (float) |
resultSetId |
The result set id of this performance distribution record |
integer (int32) |
totalPercent |
The total percent of this performance distribution |
number (float) |
totalTime |
The total time of this performance distribution |
number (float) |
3.31. PerformanceSummaryResource
Name | Schema |
---|---|
links |
< Link > array |
reason1 |
< PerformanceDistribution > array |
3.32. PrivilegeSet
Name | Schema |
---|---|
category |
string |
description |
string |
displayName |
string |
icon |
string |
id |
integer (int32) |
scope |
string |
3.33. ProdTrackInfo
Name | Schema |
---|---|
actual |
string |
delivered |
string |
planned |
string |
3.34. ProductOrderOeeResource
Name | Schema |
---|---|
links |
< Link > array |
oeeDetails |
< Resource«OeeGrouping» > array |
3.36. ProductionInfo
Name | Schema |
---|---|
description |
string |
line |
string |
path |
string |
processOrder |
string |
processOrderControlType |
string |
processOrderStatus |
string |
processOrderType |
string |
productCode |
string |
unit |
string |
3.37. ProductionStatus
Name | Schema |
---|---|
completePercentage |
number (float) |
endTime |
string |
order |
string |
product |
string |
productionDetailedInfo |
|
startTime |
string |
status |
string |
3.38. ProductionStatusResponseResource
Name | Schema |
---|---|
links |
< Link > array |
status |
< ProductionStatusSummary > array |
3.39. ProductionStatusSummary
Name | Schema |
---|---|
greaterThan |
boolean |
groupName |
string |
productionInfo |
< ProductionStatus > array |
3.41. QualityCategoryResource
Name | Schema |
---|---|
categoryByDuration |
< QualityDistribution > array |
categoryByEvent |
< QualityDistribution > array |
links |
< Link > array |
reason1 |
< QualityDistribution > array |
reason1ByDuration |
< QualityDistribution > array |
reason1ByEvent |
< QualityDistribution > array |
3.42. QualityDistribution
Name | Description | Schema |
---|---|---|
events |
The events of this quality distribution |
integer (int32) |
mabe |
The mean amount produced between waste events. MABE replaces MTBF for waste events. |
string |
mape |
The mean amount of waste per event. MAPE replaces MTTR for waste events |
string |
name |
The name of this quality distribution |
string |
productionPercent |
The production percent of this quality distribution |
number (float) |
qualityPercent |
The quality percent of this quality distribution |
number (float) |
resultSetId |
The result set id of this quality distribution |
integer (int32) |
totalProduction |
The total production of this quality distribution |
number (float) |
totalTime |
The total time of this quality distribution |
number (float) |
3.43. QualitySummary
Name | Schema |
---|---|
categoryByDuration |
< QualityDistribution > array |
categoryByEvent |
< QualityDistribution > array |
reason1 |
< QualityDistribution > array |
reason1ByDuration |
< QualityDistribution > array |
reason1ByEvent |
< QualityDistribution > array |
3.44. QualitySummaryDetailResource
Name | Description | Schema |
---|---|---|
categories |
Response as got from api production-metrics-viewer/quality/categories |
|
links |
< Link > array |
|
mapeMabe |
Response as got from api production-metrics-viewer/quality/mape-mabe |
|
reasons |
Response as got from api production-metrics-viewer/quality/reasons |
3.45. QualitySummaryResource
Name | Schema |
---|---|
categoryByDuration |
< QualityDistribution > array |
categoryByEvent |
< QualityDistribution > array |
links |
< Link > array |
reason1 |
< QualityDistribution > array |
reason1ByDuration |
< QualityDistribution > array |
reason1ByEvent |
< QualityDistribution > array |
3.46. Resource«AssetInfo»
Name | Schema |
---|---|
assetId |
integer (int64) |
assetType |
string |
identifier |
integer (int64) |
links |
< Link > array |
name |
string |
3.47. Resource«AssetMetricData»
Name | Schema |
---|---|
availableRate |
number (double) |
line |
string |
lineAssets |
< AssetInfo > array |
lineId |
integer (int32) |
links |
< Link > array |
oeeMode |
integer (int32) |
percentOEE |
number (double) |
performanceRate |
number (double) |
qualityRate |
number (double) |
unitDesc |
string |
unitId |
integer (int32) |
unitsCount |
integer (int32) |
3.48. Resource«OeeGrouping»
Name | Description | Schema |
---|---|---|
data |
The oee details list of this oee grouping |
< OverallOeeDetails > array |
groupName |
The title of this oee grouping |
string |
links |
< Link > array |
3.49. S88RShiftsResource
Name | Description | Schema |
---|---|---|
links |
< Link > array |
|
shiftDesc |
The list of shifts of type S88R shifts |
< string > array |
3.50. TimeSelectionResource
Name | Description | Schema |
---|---|---|
endTime |
End time in ISO-8601 format |
string |
eventEpochEndTime |
The end time in epoch second format |
integer (int64) |
eventEpochStartTime |
The start time in epoch second format |
integer (int64) |
links |
< Link > array |
|
startTime |
Start time in ISO-8601 format |
string |
3.51. UnitAssetsResource
Name | Schema |
---|---|
links |
< Link > array |
units |
< Resource«AssetInfo» > array |
3.52. UnitMetricsDataResponseResource
Name | Schema |
---|---|
endTime |
string |
links |
< Link > array |
oeeMaxLmtOverride |
boolean |
startTime |
string |
statistics |
< UnitStatisticsData > array |
uomList |
< UnitOfMeasure > array |
3.53. UnitOfMeasure
Name | Description | Schema |
---|---|---|
puDesc |
The unit description of the products. |
string |
puId |
The unit id of the products. |
integer (int32) |
uom |
List of unit of measurement details of the products. |
string |
3.54. UnitStatisticsData
Name | Schema |
---|---|
idealProduction |
number (float) |
netProduction |
number (float) |
partName |
string |
productionAmount |
number (float) |
qualityRate |
number (float) |
wastedAmount |
number (float) |
3.55. UserSettingRequest
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
The application specific settings, Eg:- 'App Name' : {'property1' : 'value' , 'property2' : 'value'} } |
object |
viewName |
string |
3.56. UserSettingResource
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
object |
|
defaultSetting |
Example : |
boolean |
links |
< Link > array |
|
viewName |
string |
4. Security
4.1. access_token
Type : oauth2
Flow : accessCode
Token URL : http://localhost:8443/uaa/oauth/authorize
Token URL : http://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.2. resource_owner
Type : oauth2
Flow : password
Token URL : http://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.3. implicit_grant
Type : oauth2
Flow : implicit
Token URL : http://localhost:8443/uaa/oauth/authorize
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.4. client_creds
Type : oauth2
Flow : application
Token URL : http://localhost:8443/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |