1. Overview
The autolog-app-service contains a collection of RESTful service calls to retrieve information relevant to autolog in manufacturing execution.
Description of endpoints can be found in the section headers for each collection of relevant resources.
1.2. Tags
-
data-type-controller : Data Type Controller
-
display-controller : Display Controller
-
event-details-controller : Event Details Controller
-
histogram-controller : Histogram Controller
-
product-change-controller : Product Change Controller
-
product-controller : Product Controller
-
production-event-controller : Production Event Controller
-
time-based-event-controller : Time Based Event Controller
-
user-defined-event-controller : User Defined Event Controller
-
user-settings-controller : User Settings Controller
-
variable-controller : Variable Controller
2. Resources
2.1. Data-type-controller
Data Type Controller
2.1.1. Get user-defined/custom-data types
GET /v1/data-type/user-defined
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
dataTypeId |
dataTypeId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
< Phrase > array |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2. Display-controller
Display Controller
2.2.1. Get a display record
GET /v1/display
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Forbidden, User is not allowed to update the record |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.2. Get sheets detail
GET /v1/display/sheets
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
isActive |
isActive |
boolean |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
sheetDesc |
sheetDesc |
string |
|
Query |
sheetId |
sheetId |
integer (int64) |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
< SheetInfo > array |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.3. Get Event count for a sheet
GET /v1/display/{sheetid}/event/count
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Event or Batch Id list; comma separated |
integer (int64) |
|
Query |
startDate |
Start Date; example = 2022-08-03T10:50:17.717Z |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
integer (int64) |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.4. Get events for a sheet
GET /v1/display/{sheetid}/events-detail
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
decimalSep |
Decimal Separator |
string |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Query |
startDate |
Start Date; example = 2022-08-03T10:50:17.717Z |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.5. Search events for a sheet
GET /v1/display/{sheetid}/events-search
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
decimalSep |
Decimal Separator |
string |
|
Query |
exactSearch |
Exact Text |
boolean |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
searchText |
Search Text |
string |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.6. Search events for a sheet
GET /v1/display/{sheetid}/events-search-without-test-data
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
exactSearch |
Exact Text |
boolean |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
searchText |
Search Text |
string |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
< SheetEventInfo > array |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.7. Get sheet properties
GET /v1/display/{sheetid}/properties
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
GetOptions |
GetOptions |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
401 |
Unauthorized |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
No Content |
500 |
Internal Server Error |
2.2.8. Get sheet security info
GET /v1/display/{sheetid}/security
Caution
|
operation.deprecated |
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.9. Get sheet security info
GET /v1/display/{sheetid}/security-info
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
displayOptionCategoryId |
displayOptionCategoryId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
< SheetsSecurityInfo > array |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.10. Get sheet event test data
GET /v1/display/{sheetid}/sheet-event-test-data
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
decimalSep |
Decimal Separator |
string |
|
Query |
eventIds |
eventIds |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
< SheetVariableTestResult > array |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.11. Get sheets detail
GET /v1/display/{sheetid}/sheet-security-user-group
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
integer (int32) |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.12. Get events for a sheet
GET /v1/display/{sheetid}/sheet-type/{sheettypeid}/events
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Path |
sheettypeid |
Sheet type id |
integer (int64) |
|
Query |
decimalSep |
Decimal Separator |
string |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Query |
startDate |
Start Date; example = 2022-08-03T10:50:17.717Z |
string |
|
Query |
variableIds |
Variable Id list; comma separated |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.2.13. Get variables for a sheet
GET /v1/display/{sheetid}/variables
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
sheetid |
Sheet Id |
integer (int64) |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.3. Event-details-controller
Event Details Controller
2.3.1. Get event details
GET /v1/eventDetails
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
eventId |
eventId |
integer (int64) |
|
Query |
eventType |
eventType |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
401 |
Unauthorized |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
No Content |
500 |
Internal Server Error |
2.3.2. deleting event details
DELETE /v1/eventDetails
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
eventId |
eventId |
integer (int64) |
|
Query |
eventType |
eventType |
integer (int64) |
|
Query |
resultOn |
resultOn |
string |
|
Query |
sheetId |
sheetId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
401 |
Unauthorized |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
No Content |
500 |
Internal Server Error |
2.3.3. Event Dimensions
PUT /v1/eventDetails/eventDimensions
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
eventDimensionDetails |
eventDimensionDetails |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
No Content |
500 |
Internal Server Error |
2.3.4. Get event history
GET /v1/eventDetails/history
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
eventId |
eventId |
integer (int64) |
|
Query |
eventType |
eventType |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
401 |
Unauthorized |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
No Content |
500 |
Internal Server Error |
2.4. Histogram-controller
Histogram Controller
2.4.1. Get a histogram record
GET /histogram-data/{variableId}/histogram
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
variableId |
variable id |
integer (int64) |
|
Query |
InTimeZone |
InTimeZone |
string |
|
Query |
endTime |
end time |
string |
|
Query |
sheetId |
sheet id |
integer (int64) |
|
Query |
startTime |
start time |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
401 |
Unauthorized |
No Content |
403 |
Forbidden, Authenticated user is not known by histogram Application |
No Content |
404 |
Not Found |
No Content |
2.5. Product-change-controller
Product Change Controller
2.5.1. Create product change event
POST /v1/product-change-event
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
ProductChange |
ProductChange |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
202 |
Accepted |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.5.2. Get product change event creator state
GET /v1/product-change-event/creator-state
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.6. Product-controller
Product Controller
2.6.1. Get products
GET /v1/product
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
code |
code |
string |
|
Query |
description |
description |
string |
|
Query |
familyIds |
familyIds |
string |
|
Query |
groupIds |
groupIds |
string |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
serialized |
serialized |
boolean |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Query |
unitIds |
Unit Ids of Product. |
< integer (int64) > array(multi) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.7. Production-event-controller
Production Event Controller
2.7.1. Create production event
POST /v1/production-event
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
productionEventRequest |
productionEventRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
201 |
Accepted |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.7.2. Get production event creator state
GET /v1/production-event/creator-state
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
sheetId |
sheetId |
integer (int64) |
|
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.8. Time-based-event-controller
Time Based Event Controller
2.8.1. Create time based event
POST /v1/time-based-event
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
udeRequest |
udeRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
201 |
Accepted |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.8.2. Get time based event creator state
GET /v1/time-based-event/creator-state
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
sheetId |
sheetId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.9. User-defined-event-controller
User Defined Event Controller
2.9.1. Create user defined event
POST /v1/user-defined-event
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
udeRequest |
udeRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
202 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.9.2. Get user defined event creator state
GET /v1/user-defined-event/creator-state
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
sheetId |
sheetId |
integer (int64) |
|
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.9.3. Get user defined future events after a particular start time, based on parameters
GET /v1/user-defined-event/future-events
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
endTime |
End Time; example = 2022-09-03T10:50:17.717Z |
string |
|
Query |
numberOfEvent |
numberOfEvent |
integer (int64) |
|
Query |
sheetId |
sheetId |
integer (int64) |
|
Query |
startTime |
Start Time; example = 2022-08-03T10:50:17.717Z |
string |
|
Query |
unitId |
unitId |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.10. User-settings-controller
User Settings Controller
2.10.1. Create User settings for the logged in user
POST /v2/settings
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
userSettingsRequest |
User Setting Object |
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.10.2. Get User settings for the logged in User
GET /v2/settings
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
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.10.3. Update User settings for the logged in user
PUT /v2/settings
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
request |
User Preference Object |
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.10.4. Delete User settings for the logged in user
DELETE /v2/settings
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
appId |
appId |
integer (int32) |
|
Query |
viewName |
viewName |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
204 |
Success |
string |
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not Found, User Setting not found |
|
500 |
Internal Server Error |
2.10.5. Get Privilege Sets
GET /v2/settings/apps
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Query |
appName |
appName |
string |
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.11. Variable-controller
Variable Controller
2.11.1. Get Variable Specification
GET /variable/specification/{variable}/{product}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
product |
Product Id |
integer (int64) |
|
Path |
variable |
Variable Id |
integer (int64) |
|
Query |
resultOn |
Result On |
string |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.11.2. Create Test Value
POST /variable/test-value
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Body |
testsDataRequest |
TestValueRecord object to update a test value record |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.11.3. Get test value history and Variable Specification
GET /variable/test-value-history-var-spec/{variable}/{product}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
product |
Product Id |
integer (int64) |
|
Path |
variable |
Variable Id |
integer (int64) |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
resultOn |
Result On |
string |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Query |
test_id |
Test Id |
integer (int64) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
|
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.11.4. Get test value history
GET /variable/test-value-history/{testid}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
testid |
Test Id |
integer (int64) |
|
Query |
page |
Page number to return 0 to N. |
integer (int32) |
|
Query |
size |
Number of resources to return per page. |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
object |
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
2.11.5. Update Test Value
PUT /variable/test-value/{id}
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Header |
Site-Id |
Represents the id of the site to connect to |
string |
|
Path |
id |
Test Id |
integer (int64) |
|
Body |
testDataRequest |
testDataRequest |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Success |
|
400 |
Bad Request |
No Content |
401 |
Unauthorized |
No Content |
403 |
Forbidden, User is not allowed to update the record |
No Content |
404 |
Not Found, Resource is not found |
No Content |
422 |
Unprocessable Entity |
|
503 |
Service Unavailable |
No Content |
3. Definitions
3.1. BaseAssetInfo
Name | Description | Schema |
---|---|---|
assetId |
The asset Id |
integer (int64) |
name |
The name of the asset |
string |
type |
The type of the asset |
enum (Department, Line, Unit, Group, Variable, ProcessOrder) |
3.2. EntityModel«EventDetails»
Name | Description | Schema |
---|---|---|
acknowledge |
boolean |
|
actualProduct |
Unique identifier Actual Product |
integer (int64) |
actualProductCode |
Actual Product Code |
string |
appliedProduct |
Identifier for appliedProduct |
integer (int64) |
appliedProductCode |
Applied Product Code |
string |
approverReasonId |
Identifier for approverReasonId |
integer (int64) |
approverUserId |
Identifier for approverUserId |
integer (int64) |
commentId |
Identifier for commentId |
integer (int64) |
componentId |
Identifier for componentIdAcknowledge |
integer (int64) |
conformance |
Identifier for conformance |
integer (int64) |
eventId |
Identifier for eventId |
integer (int64) |
eventNum |
Identifier for eventNum |
string |
eventStatus |
Identifier for eventStatus |
integer (int64) |
eventStatusDesc |
Production Status Description or Event Status Description |
string |
links |
||
puId |
Identifier for puId |
integer (int64) |
resultOn |
Identifier for resultOn |
string (date-time) |
sourceEventId |
Identifier for sourceEventId |
integer (int64) |
sourceEventNum |
Identifier for sourceEventNum |
string |
testingPercntgComplete |
Identifier for testingPercntgComplete |
integer (int64) |
testingStatus |
Identifier for testingStatus |
integer (int64) |
testsDetails |
< TestsDetails > array |
|
userReasonId |
Identifier for userReasonId |
integer (int64) |
userSignOffId |
Identifier for userSignOffId |
integer (int64) |
3.4. EventDetails
Name | Description | Schema |
---|---|---|
acknowledge |
boolean |
|
actualProduct |
Unique identifier Actual Product |
integer (int64) |
actualProductCode |
Actual Product Code |
string |
appliedProduct |
Identifier for appliedProduct |
integer (int64) |
appliedProductCode |
Applied Product Code |
string |
approverReasonId |
Identifier for approverReasonId |
integer (int64) |
approverUserId |
Identifier for approverUserId |
integer (int64) |
commentId |
Identifier for commentId |
integer (int64) |
componentId |
Identifier for componentIdAcknowledge |
integer (int64) |
conformance |
Identifier for conformance |
integer (int64) |
eventId |
Identifier for eventId |
integer (int64) |
eventNum |
Identifier for eventNum |
string |
eventStatus |
Identifier for eventStatus |
integer (int64) |
eventStatusDesc |
Production Status Description or Event Status Description |
string |
puId |
Identifier for puId |
integer (int64) |
resultOn |
Identifier for resultOn |
string (date-time) |
sourceEventId |
Identifier for sourceEventId |
integer (int64) |
sourceEventNum |
Identifier for sourceEventNum |
string |
testingPercntgComplete |
Identifier for testingPercntgComplete |
integer (int64) |
testingStatus |
Identifier for testingStatus |
integer (int64) |
testsDetails |
< TestsDetails > array |
|
userReasonId |
Identifier for userReasonId |
integer (int64) |
userSignOffId |
Identifier for userSignOffId |
integer (int64) |
3.5. EventDetailsInfo
Name | Schema |
---|---|
actionLevel1 |
integer (int64) |
actionLevel2 |
integer (int64) |
actionLevel3 |
integer (int64) |
actionLevel4 |
integer (int64) |
actionName1 |
string |
actionName2 |
string |
actionName3 |
string |
actionName4 |
string |
appliedProduct |
string |
causeLevel1 |
integer (int64) |
causeLevel2 |
integer (int64) |
causeLevel3 |
integer (int64) |
causeLevel4 |
integer (int64) |
causeName1 |
string |
causeName2 |
string |
causeName3 |
string |
causeName4 |
string |
customerOrderNumber |
string |
description |
string |
detailsDuration |
string |
endTime |
string (date-time) |
eventId |
integer (int64) |
eventNum |
string |
eventStatus |
string |
eventType |
string |
finalDimensionA |
string |
finalDimensionX |
string |
finalDimensionY |
string |
finalDimensionZ |
string |
initialDimensionA |
string |
initialDimensionX |
string |
initialDimensionY |
string |
initialDimensionZ |
string |
originalProduct |
string |
patternCode |
string |
processOrder |
string |
productUnitId |
integer (int64) |
researchCloseDate |
string (date-time) |
researchOpenDate |
string (date-time) |
researchStatusDecription |
string |
startTime |
string (date-time) |
status |
string |
unitName |
string |
userDefinedEventId |
integer (int64) |
userName |
string |
3.6. EventDimensionDetails
Name | Schema |
---|---|
eventId |
integer (int64) |
finalDimA |
string |
finalDimX |
string |
finalDimY |
string |
finalDimZ |
string |
3.7. EventHeaderInfo
Name | Schema |
---|---|
eventStarts |
integer (int64) |
product |
|
unit |
|
user |
3.8. EventHistoryDetails
Name | Schema |
---|---|
dimensionA |
string |
dimensionX |
string |
dimensionY |
string |
dimensionZ |
string |
entryOn |
string (date-time) |
orderNumber |
string |
shipmntNumber |
string |
3.9. EventHistoryDto
Name | Schema |
---|---|
eventHistoryDetails |
< EventHistoryDetails > array |
eventHistoryInfo |
< EventHistoryInfo > array |
udeHistoryDetails |
< UdeHistoryDetails > array |
3.10. EventHistoryInfo
Name | Schema |
---|---|
appliedProduct |
string |
endTime |
string |
entryOn |
string (date-time) |
eventNum |
string |
originalProduct |
string |
status |
string |
userName |
string |
3.11. HistogramData
Name | Description | Schema |
---|---|---|
value |
Uniquee identifier for this value |
number (double) |
variableId |
Unique identifier for this productId |
integer (int64) |
3.13. IdNameValue
Name | Description | Schema |
---|---|---|
id |
Unique identifier of this id of every pair/used across several services to represent a generic Id |
integer (int64) |
name |
Unique identifier of this name of every pair/used across several services to represent a generic name |
string |
3.14. Link
Name | Schema |
---|---|
deprecation |
string |
href |
string |
hreflang |
string |
media |
string |
name |
string |
profile |
string |
rel |
string |
template |
|
templated |
boolean |
title |
string |
type |
string |
3.16. PageMetadata
Name | Schema |
---|---|
number |
integer (int64) |
size |
integer (int64) |
totalElements |
integer (int64) |
totalPages |
integer (int64) |
3.17. PagedModel«EntityModel«EventDetails»»
Name | Schema |
---|---|
content |
< EntityModel«EventDetails» > array |
links |
|
page |
3.19. Phrase
Name | Schema |
---|---|
active |
boolean |
changedDate |
string |
commentRequired |
boolean |
dataTypeId |
integer (int64) |
oldPhrase |
string |
phraseId |
integer (int64) |
phraseOrder |
integer (int64) |
phraseValue |
string |
3.20. PrivilegeSet
Name | Schema |
---|---|
category |
string |
description |
string |
displayName |
string |
icon |
string |
id |
integer (int32) |
scope |
string |
3.21. Product
Name | Description | Schema |
---|---|---|
code |
The product code |
string |
description |
The description of the product |
string |
descriptionGlobal |
The description of the product global |
string |
eventEsignatureLevel |
The event Esiganature level |
integer (int64) |
externalLink |
Product External Link |
string |
externalRevision |
The external revision |
integer (int64) |
id |
The unique ID of the product |
integer (int64) |
isSerialized |
The product Id is serialized or not |
boolean |
links |
< Link > array |
|
productChangeEsignatureLevel |
The product change Esiganature level |
integer (int64) |
productFamilyId |
The id of the product family this product is a member of |
integer (int64) |
productGroupId |
The id of the product group this product is a member of |
integer (int64) |
3.22. ProductChange
Name | Description | Schema |
---|---|---|
productId |
Unique identifier of product |
integer (int64) |
timeStamp |
Time the product was requested to change; Example: 2022-09-14T10:50:01Z |
string |
unitId |
Unique identifier of unit |
integer (int64) |
3.23. ProductPage
Name | Schema |
---|---|
content |
< Product > array |
links |
< Link > array |
page |
3.24. ProductionEventRequest
Name | Description | Schema |
---|---|---|
commentsThreadId |
integer (int64) |
|
endTime |
Production Event end time |
string (date-time) |
eventName |
string |
|
productId |
integer (int64) |
|
productionStatusId |
integer (int64) |
|
startTime |
Production Event start time |
string (date-time) |
unitId |
integer (int64) |
3.25. SheetEventInfo
Name | Description | Schema |
---|---|---|
acknowledge |
boolean |
|
actualProduct |
Unique identifier Actual Product |
integer (int64) |
actualProductCode |
Actual Product Code |
string |
appliedProduct |
Unique identifier for appliedProduct |
integer (int64) |
appliedProductCode |
Applied Product Code |
string |
approverReasonId |
Unique identifier for approverReasonId |
integer (int64) |
approverUserId |
Unique identifier for approverUserId |
integer (int64) |
commentId |
Unique identifier for commentId |
integer (int64) |
componentId |
Unique identifier for componentIdAcknowledge |
integer (int64) |
conformance |
Unique identifier for conformance |
integer (int64) |
eventId |
Unique identifier for eventId |
integer (int64) |
eventNum |
Unique identifier for eventNum |
string |
eventStatus |
Unique identifier for eventStatus |
integer (int64) |
eventStatusDesc |
Production Status Description or Event Status Description |
string |
puId |
Unique identifier for puId |
integer (int64) |
resultOn |
Unique identifier for resultOn |
string (date-time) |
sourceEventId |
Unique identifier for sourceEventId |
integer (int64) |
sourceEventNum |
Unique identifier for sourceEventNum |
string |
testingPercntgComplete |
Unique identifier for testingPercntgComplete |
integer (int64) |
testingStatus |
Unique identifier for testingStatus |
integer (int64) |
userReasonId |
Unique identifier for userReasonId |
integer (int64) |
userSignOffId |
Unique identifier for userSignOffId |
integer (int64) |
3.26. SheetInfo
Name | Schema |
---|---|
active |
boolean |
deptDesc |
string |
deptId |
integer (int64) |
eventSubTypeDesc |
string |
eventSubtypeId |
integer (int64) |
eventType |
integer (int64) |
eventTypeDesc |
string |
lineDesc |
string |
lineId |
integer (int64) |
masterUnit |
integer (int64) |
productionUnit |
integer (int64) |
sheetDesc |
string |
sheetGroupDesc |
string |
sheetGroupId |
integer (int64) |
sheetId |
integer (int64) |
sheetSecurityGroupId |
string |
sheetType |
integer (int64) |
sheetTypeDesc |
string |
unitDesc |
string |
unitId |
integer (int64) |
3.27. SheetPermissions
Name | Schema |
---|---|
content |
< string, < Permission > array > map |
links |
< Link > array |
3.28. SheetProperties
Name | Schema |
---|---|
columnHeaders |
integer (int64) |
columnNumbering |
integer (int64) |
eventPrompt |
string |
eventSubtypeId |
integer (int64) |
eventType |
integer (int64) |
initalCount |
integer (int64) |
interval |
integer (int64) |
intervalOffset |
integer (int64) |
isActive |
boolean |
masterUnit |
integer (int64) |
maximumCount |
integer (int64) |
rowHeaders |
integer (int64) |
rowNumbering |
integer (int64) |
serverName |
string |
sheetDescription |
string |
sheetId |
integer (int64) |
sheetType |
string |
sheetTypeId |
integer (int64) |
3.29. SheetVariableTestResult
Name | Schema |
---|---|
ack |
boolean |
alarmDesc |
string |
alarmEndTime |
string (date-time) |
alarmId |
integer (int64) |
alarmPriorityDesc |
string |
alarmPriorityId |
integer (int64) |
alarmStartTime |
string (date-time) |
arrayId |
integer (int64) |
canceled |
boolean |
commentId |
integer (int64) |
entryBy |
integer (int64) |
entryOn |
string (date-time) |
esignatureLevel |
integer (int32) |
eventId |
integer (int64) |
hasHistory |
boolean |
locked |
boolean |
lowerControl |
string |
lowerEntry |
string |
lowerReject |
string |
lowerUser |
string |
lowerWarning |
string |
prodId |
integer (int64) |
puid |
integer (int64) |
result |
string |
resultOn |
string (date-time) |
target |
string |
testFrequency |
integer (int64) |
testId |
integer (int64) |
upperControl |
string |
upperEntry |
string |
upperReject |
string |
upperUser |
string |
upperWarning |
string |
varId |
integer (int64) |
varMandatory |
boolean |
3.30. SheetsSecurityInfo
Name | Schema |
---|---|
displayOptionAccessId |
string |
displayOptionCategoryDesc |
string |
displayOptionDesc |
string |
displayOptionId |
integer (int64) |
displayOptionLongDesc |
string |
displayOptionMax |
integer (int64) |
displayOptionMin |
integer (int64) |
displayOptionRequired |
boolean |
esignature |
boolean |
fieldTypeDesc |
string |
fieldTypeId |
integer (int64) |
spLookup |
string |
storeId |
integer (int64) |
value |
string |
3.31. TemplateVariable
Name | Schema |
---|---|
description |
string |
name |
string |
type |
enum (, ?, &, /, #, *) |
3.33. TestsDataRequest
Name | Schema |
---|---|
commentId |
integer (int64) |
eventId |
integer (int64) |
result |
string |
resultOn |
string |
varId |
integer (int64) |
3.34. TestsDataResponse
Name | Schema |
---|---|
cancelled |
boolean |
commentId |
integer (int64) |
eventId |
integer (int64) |
result |
string |
resultOn |
string |
testId |
integer (int64) |
varId |
integer (int64) |
3.35. TestsDetails
Name | Schema |
---|---|
ack |
boolean |
alarmDesc |
string |
alarmEndTime |
string (date-time) |
alarmId |
integer (int64) |
alarmPriorityDesc |
string |
alarmPriorityId |
integer (int64) |
alarmStartTime |
string (date-time) |
arrayId |
integer (int64) |
canceled |
boolean |
commentId |
integer (int64) |
entryBy |
integer (int64) |
entryOn |
string (date-time) |
esignatureLevel |
integer (int32) |
eventId |
integer (int64) |
hasHistory |
boolean |
locked |
boolean |
lowerControl |
string |
lowerEntry |
string |
lowerReject |
string |
lowerUser |
string |
lowerWarning |
string |
prodId |
integer (int64) |
puid |
integer (int64) |
result |
string |
resultOn |
string (date-time) |
target |
string |
testFrequency |
integer (int64) |
testId |
integer (int64) |
upperControl |
string |
upperEntry |
string |
upperReject |
string |
upperUser |
string |
upperWarning |
string |
varId |
integer (int64) |
varMandatory |
boolean |
3.36. TimeBasedEventCreatorInfo
Name | Description | Schema |
---|---|---|
availableTime |
Time the product was requested to change; Example: 2022-09-14T10:50:01Z |
string |
eventHeaderInfo |
3.37. TimeBasedEventRequest
Name | Schema |
---|---|
commentsThreadId |
integer (int64) |
sheetId |
integer (int64) |
timestamp |
string (date-time) |
3.38. UdeHistoryDetails
Name | Schema |
---|---|
detailDuraion |
string |
endTime |
string (date-time) |
eventType |
string |
productUnitDescription |
string |
startTime |
string (date-time) |
status |
string |
userDefinedEventDescription |
string |
userDefinedEventId |
integer (int64) |
userId |
integer (int64) |
3.39. UriTemplate
Name | Schema |
---|---|
variableNames |
< string > array |
variables |
< TemplateVariable > array |
3.40. UserDefinedRecord
Name | Description | Schema |
---|---|---|
ack |
The time start time to research of user defined record |
boolean |
ackBy |
||
ackOn |
string (date-time) |
|
action1 |
The Level 1 Action of the user defined record. |
|
action2 |
The Level 2 Action of the user defined record. |
|
action3 |
The Level 3 Action of the user defined record. |
|
action4 |
The Level 4 Action of the user defined record. |
|
actionCommentsThreadId |
Action comment thread this record is part of |
integer (int64) |
asset |
The asset/unit this location belongs to |
|
cause1 |
The Level 1 Cause (Reason) of the user defined record. |
|
cause2 |
The Level 2 Cause (Reason) of the user defined record. |
|
cause3 |
The Level 3 Cause (Reason) of the user defined record. |
|
cause4 |
The Level 4 Cause (Reason) of the user defined record. |
|
causeCommentsThreadId |
Cause comment thread this record is part of |
integer (int64) |
commentsThreadId |
Comment thread this record is part of |
integer (int64) |
conformance |
integer (int64) |
|
department |
The Department this location belongs to |
|
duration |
The duration of the user defined record. |
integer (int64) |
eSignatureId |
integer (int64) |
|
endTime |
The end time of the user defined event |
string (date-time) |
eventName |
The name of an event |
string |
eventStatus |
The info of an event status |
|
eventSubType |
The info of an event type |
|
isLockEventData |
Defines that event is locked or not |
boolean |
line |
The Line this location belongs to |
|
parentUserDefinedEventId |
integer (int64) |
|
productionEventId |
integer (int64) |
|
reasonTreeDataId |
The reason treeid of user defined record. |
integer (int64) |
researchCloseDate |
The time end time to research of user defined record |
string (date-time) |
researchCommentsThreadId |
Research comment thread this record is part of |
integer (int64) |
researchOpenDate |
The time start time to research of user defined record |
string (date-time) |
researchStatus |
The research status of user defined record. |
|
researchUser |
||
startTime |
The start time of the user defined event starts |
string (date-time) |
testPercentComplete |
integer (int64) |
|
testingStatus |
||
user |
The user defines the user defined record. |
|
userDefinedRecordId |
Unique identifier of this userdefined record |
integer (int64) |
3.41. UserDefinedRequest
Name | Description | Schema |
---|---|---|
cause1 |
integer (int64) |
|
cause2 |
integer (int64) |
|
cause3 |
integer (int64) |
|
cause4 |
integer (int64) |
|
commentsThreadId |
integer (int64) |
|
endTime |
User Defined Event End Time; Example: 2022-09-14T10:50:01Z |
string (date-time) |
eventName |
string |
|
eventStatus |
integer (int64) |
|
eventSubType |
integer (int64) |
|
startTime |
User Defined Event Start Time; Example: 2022-09-14T10:50:01Z |
string (date-time) |
unitId |
integer (int64) |
|
userDefinedRecordId |
integer (int64) |
3.42. UserSettingRequest
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
The application specific settings, Eg:- 'App Name' : {'property1' : 'value' , 'property2' : 'value'} } |
object |
viewName |
string |
3.43. UserSettingResponseResource
Name | Schema |
---|---|
appId |
integer (int32) |
data |
object |
defaultSetting |
boolean |
links |
< Link > array |
viewName |
string |
4. Security
4.1. access_token
Type : oauth2
Flow : accessCode
Token URL : https://localhost/uaa/oauth/authorize
Token URL : https://localhost/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.2. resource_owner
Type : oauth2
Flow : password
Token URL : https://localhost/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.3. implicit_grant
Type : oauth2
Flow : implicit
Token URL : https://localhost/uaa/oauth/authorize
Name | Description |
---|---|
default |
Default oauth2 scope. |
4.4. client_creds
Type : oauth2
Flow : application
Token URL : https://localhost/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |