1. Overview
The service contains a collection of RESTful service calls relating to Alarms from the Plant apps serverDescriptions of these functions can be found in the section headers for each collection of relevant resources.
2. Resources
2.1. Alarm-controller
Alarm Controller
2.1.1. Get all Alarms based on the request parameters
GET /alarmsViewer
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
endTime |
End time (incase of timeSelection = 7) in ISO format (yyyy-MM-dd’T’HH:mm:ss.SSSZ) |
string (date-time) |
|
Query |
sortColumn |
Property name on which sorting is to be done, supports sorting on only single property |
string |
|
Query |
sortDirection |
Sort Direction, either asc or desc |
string |
|
Query |
startTime |
Start time (incase of timeSelection = 7) in ISO format (yyyy-MM-dd’T’HH:mm:ss.SSSZ) |
string (date-time) |
|
Query |
timeSelection |
Time selection value |
integer (int32) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< AlarmRecordsListResource > array |
400 |
Bad Request |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
500 |
Internal Server Error |
No Content |
2.1.2. Gets the alarm record for the alarm Id provided.
GET /alarmsViewer/{alarmId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
alarmId |
Alarm Id to retireve the Alarm Record |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
404 |
Not Found, No Alarm found for this alarm Id |
|
500 |
Internal Server Error |
No Content |
2.2. Alarm-editor-controller
Alarm Editor Controller
2.2.1. Get the Alarm Edit State details
GET /alarmEditor
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
alarmId |
Id of the Alarm for which Edit state is requested |
integer (int64) |
|
Query |
expandActions |
Flag indicating whether the Action Options should be retrieved |
boolean |
|
Query |
expandCause |
Flag indicating whether the Cause Options should be retrieved |
boolean |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
No Content |
403 |
Forbidden |
No Content |
500 |
Internal Server error, See logs for details |
No Content |
2.2.2. Get the alarm Reason Trees
GET /alarmEditor/reasonTree
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
alarmId |
Id of the Alarm for which Reason Trees are requested |
integer (int64) |
Query |
reasonTreeType |
Parameter specifying the type of Reason Tree. |
enum (CauseTree, ActionTree) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< ReasonTreeNodeDto > array |
400 |
Bad Request |
|
401 |
Unauthorized |
No Content |
403 |
Forbidden |
|
500 |
Internal Server Error |
No Content |
2.2.3. Fetches top reasons for the alarm
GET /alarmEditor/topReasons
Parameters
Type | Name | Description | Schema | Default |
---|---|---|---|---|
Query |
alarmId |
The alarmId for which top reasons are required |
integer (int64) |
|
Query |
reasonType |
Reason tree type to get the specified type of top reasons |
enum (Action, Cause) |
|
Query |
topReasonsCount |
Required number of top reasons |
integer (int64) |
|
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
401 |
Unauthorized |
No Content |
500 |
Internal Server Error |
No Content |
2.2.4. Updates the alarm record for the alarm Id provided.
PUT /alarmEditor/{alarmId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
alarmId |
Alarm Id of the Alarm Record to update |
integer (int64) |
Body |
alarmRecordUpdateData |
Alarm Record details to be updated, All the values in this will be updated in DB |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
304 |
Not Modified, Request body values same as Data Base |
|
400 |
Invalid data supplied. See message for details. |
|
401 |
Unauthorized |
No Content |
403 |
Forbidden, Authenticated user not present in PlantApps |
|
404 |
Not Found, No Alarm found for this alarm Id |
|
422 |
Unprocessable Entity, Invalid data in the request body |
|
500 |
Internal Server error, See logs for details |
No Content |
2.2.5. Acknowledges the alarm record of the alarm Id provided.
PUT /alarmEditor/{alarmId}/acknowledge
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
alarmId |
Alarm Id of the Alarm Record to acknowledge |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
304 |
Not Modified, Request body values same as Data Base |
|
400 |
Invalid data supplied. See message for details. |
|
401 |
Unauthorized |
No Content |
403 |
Forbidden, Authenticated user not present in PlantApps |
|
404 |
Not Found, No Alarm found for this alarm Id |
|
422 |
Unprocessable Entity, Invalid data in the request body |
|
500 |
Internal Server error, See logs for details |
No Content |
2.3. Comment-controller
Comment Controller
2.3.1. Adds an alarm Comment
POST /alarmComments
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
alarmId |
Id of the Alarm to which comment needs to be added. |
integer (int64) |
Query |
commentType |
Parameter specifying the type of comment. |
enum (CauseComment, ActionComment) |
Body |
comment |
Comment text to be added. |
Responses
HTTP Code | Description | Schema |
---|---|---|
201 |
Created, Comment SuccessFully created. |
|
400 |
Bad Request, Unable to add the comment, Please check the validity of request object. |
|
403 |
Forbidden, User not allowed to add comments. |
|
422 |
Unprocessable Entity, Missing Required field in comment. |
|
500 |
Internal Server Error, Please contact admin. |
No Content |
503 |
Service Unavailable. |
No Content |
2.3.2. Get all the Alarm Comments
GET /alarmComments
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
alarmId |
Id of the alarm for which the comment history is required. |
integer (int64) |
Query |
commentType |
Parameter specifying the type of comment. |
enum (CauseComment, ActionComment) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Ok, Comments fetched successfully. |
< CommentInfo > array |
400 |
Bad Request, Invalid Comment Type or Non existant alarmId |
|
401 |
Unauthorized, Unauthorized user. |
No Content |
403 |
Forbidden, User not allowed to get the comment records. |
|
500 |
Internal Server Error |
No Content |
503 |
Service Unavailable. |
2.3.3. Updates an alarm Comment
PUT /alarmComments
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
alarmId |
Id of the Alarm to which comment needs to be updated. |
integer (int64) |
Query |
commentType |
Parameter specifying the type of comment. |
enum (CauseComment, ActionComment) |
Body |
comment |
comment details to be updated |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Ok, Comment SuccessFully updated. |
|
400 |
Bad Request, Unable to update the comment, Please check the validity of request object. |
|
403 |
Forbidden, User not allowed to update the comment. |
|
422 |
Unprocessable Entity, Missing Required field in comment. |
|
500 |
Internal Server Error, Please contact admin. |
No Content |
503 |
Service Unavailable. |
No Content |
2.3.4. Deletes an alarm Comment
DELETE /alarmComments/{commentId}
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Path |
commentId |
Id of the comment which needs to be deleted. |
integer (int64) |
Query |
alarmId |
Id of the Alarm from which the comment needs to be deleted. |
integer (int64) |
Query |
commentType |
Parameter specifying the type of comment. |
enum (CauseComment, ActionComment) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
object |
204 |
No Content, Comment deleted successfully. |
No Content |
400 |
Bad Request, Invalid Comment Type or Non existant alarmId. |
|
403 |
Forbidden, User not allowed to delete the comment. |
|
404 |
Not Found, No Comment Found with given commentId. |
|
500 |
Internal Server Error, Please contact admin. |
No Content |
503 |
Service Unavailable. |
No Content |
2.4. User-settings-controller
User Settings Controller
2.4.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.4.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.4.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.4.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.4.5. Get Privilege Sets
GET /v2/settings/apps
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< PrivilegeSet > array |
400 |
Invalid data supplied |
|
401 |
User Unauthorized |
No Content |
404 |
Not found, no user setting found for the user |
|
500 |
Internal Server Error |
2.5. Variable-controller
Variable Controller
2.5.1. Gets the alarm Variable Info and the trend for the provided alarm Id.
GET /variableTrend
Parameters
Type | Name | Description | Schema |
---|---|---|---|
Query |
alarmId |
Alarm Id to retireve the Alarm Variable Trend details |
integer (int64) |
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
|
400 |
Bad Request |
|
403 |
Forbidden |
|
500 |
Internal Server Error |
No Content |
2.5.2. Gets the alarm variable ids the user has access to and which belongs to the preferred Machines, User wil only see alarms and notifications for there variables
GET /variablesForWebsocketSubscription
Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
OK |
< integer (int64) > array |
400 |
Bad Request |
|
403 |
Forbidden |
|
500 |
Internal Server Error |
No Content |
3. Definitions
3.1. AlarmEditorStateResource
Name | Description | Schema |
---|---|---|
actionHeaders |
Action Header Information |
< ReasonTreeHeaderDto > array |
actionOptions |
Action reasons available for the Alarm. |
|
alarmHeaderInfo |
Alarm information |
|
causeOptions |
Cause reasons available for the Alarm. |
|
links |
< Link > array |
|
reasonHeaders |
Reason Header Information |
< ReasonTreeHeaderDto > array |
3.2. AlarmRecord
Alarm Record Object
Name | Description | Schema |
---|---|---|
acknowledged |
Whether this alarm is acknowledged or not |
boolean |
acknowledgedBy |
Name of the user who acknowledged this alarm |
string |
acknowledgedOn |
Time when this alarm was acknowledged on(ISO 8601) |
string (date-time) |
action1 |
The level 1 action taken for on regard to this alarm |
|
action2 |
The level 2 action taken for on regard to this alarm |
|
action3 |
The level 3 action taken for on regard to this alarm |
|
action4 |
The level 4 action taken for on regard to this alarm |
|
actionCommentId |
The comment thread Id for action |
integer (int64) |
actionRequired |
Whether this alarm record requires actions to be selected |
boolean |
actionTreeId |
The reason tree Id which is configured as action tree for this alarms template |
integer (int64) |
alarmDescription |
The description for this alarm |
string |
alarmId |
The unique ID for this Alarm Record |
integer (int64) |
alarmRule |
The title of the Alarm Template this alarm is based on |
string |
alarmType |
The Alarm Type |
|
canAcknowledge |
Whether this alarm record can be acknoledged |
boolean |
canPerform |
Whether this alarm record can be editied to add cause and actions |
boolean |
cause1 |
The level 1 cause why this alarm has been raised |
|
cause2 |
The level 2 cause why this alarm has been raised |
|
cause3 |
The level 3 cause why this alarm has been raised |
|
cause4 |
The level 4 cause why this alarm has been raised |
|
causeCommentId |
The comment thread Id for cause |
integer (int64) |
causeRequired |
Whether this alarm record requires causes to be selected |
boolean |
causeTreeId |
The reason tree Id which is configured as cause tree for this alarms template |
integer (int64) |
duration |
The duration (in seconds) this alarm spans from starting to end |
integer (int64) |
endTime |
The end time(ISO 8601) of this alarm |
string (date-time) |
endValue |
Value of the variable’s test when the Alarm is closed |
object |
eventCount |
Number of event this alarm spans after alarm is triggered and until its ends |
integer (int64) |
eventSubTypeDescription |
The event SubType Description, eg Batch |
string |
links |
< Link > array |
|
priority |
The severity of this alarm |
|
sourceUnit |
The unit where the alarm is raised |
|
sourceVariable |
The variable for which the alarm got raised |
|
sourceVariableDataType |
Data type of the alarm source veriable (ex. Integer, String..) |
|
startTime |
The start time(ISO 8601) of this alarm |
string (date-time) |
startValue |
Value of the variable’s test when the Alarm is opened |
object |
3.3. AlarmRecordResource
Name | Description | Schema |
---|---|---|
acknowledged |
Whether this alarm is acknowledged or not |
boolean |
acknowledgedBy |
Name of the user who acknowledged this alarm |
string |
acknowledgedOn |
Time when this alarm was acknowledged on(ISO 8601) |
string (date-time) |
action1 |
The level 1 action taken for on regard to this alarm |
|
action2 |
The level 2 action taken for on regard to this alarm |
|
action3 |
The level 3 action taken for on regard to this alarm |
|
action4 |
The level 4 action taken for on regard to this alarm |
|
actionCommentId |
The comment thread Id for action |
integer (int64) |
actionRequired |
Whether this alarm record requires actions to be selected |
boolean |
actionTreeId |
The reason tree Id which is configured as action tree for this alarms template |
integer (int64) |
alarmDescription |
The description for this alarm |
string |
alarmId |
The unique ID for this Alarm Record |
integer (int64) |
alarmRule |
The title of the Alarm Template this alarm is based on |
string |
alarmType |
The Alarm Type |
|
canAcknowledge |
Whether this alarm record can be acknoledged |
boolean |
canPerform |
Whether this alarm record can be editied to add cause and actions |
boolean |
cause1 |
The level 1 cause why this alarm has been raised |
|
cause2 |
The level 2 cause why this alarm has been raised |
|
cause3 |
The level 3 cause why this alarm has been raised |
|
cause4 |
The level 4 cause why this alarm has been raised |
|
causeCommentId |
The comment thread Id for cause |
integer (int64) |
causeRequired |
Whether this alarm record requires causes to be selected |
boolean |
causeTreeId |
The reason tree Id which is configured as cause tree for this alarms template |
integer (int64) |
duration |
The duration (in seconds) this alarm spans from starting to end |
integer (int64) |
endTime |
The end time(ISO 8601) of this alarm |
string (date-time) |
endValue |
Value of the variable’s test when the Alarm is closed |
object |
eventCount |
Number of event this alarm spans after alarm is triggered and until its ends |
integer (int64) |
eventSubTypeDescription |
The event SubType Description, eg Batch |
string |
links |
< Link > array |
|
priority |
The severity of this alarm |
|
sourceUnit |
The unit where the alarm is raised |
|
sourceVariable |
The variable for which the alarm got raised |
|
sourceVariableDataType |
Data type of the alarm source veriable (ex. Integer, String..) |
|
startTime |
The start time(ISO 8601) of this alarm |
string (date-time) |
startValue |
Value of the variable’s test when the Alarm is opened |
object |
3.4. AlarmRecordUpdateData
Object to hold data for updating the alarm record
Name | Description | Schema |
---|---|---|
acknowledge |
Whether this alarm is acknowledged or not |
boolean |
action1 |
The level 1 action taken for on regard to this alarm |
integer (int64) |
action2 |
The level 2 action taken for on regard to this alarm |
integer (int64) |
action3 |
The level 3 action taken for on regard to this alarm |
integer (int64) |
action4 |
The level 4 action taken for on regard to this alarm |
integer (int64) |
cause1 |
The level 1 cause why this alarm has been raised |
integer (int64) |
cause2 |
The level 2 cause why this alarm has been raised |
integer (int64) |
cause3 |
The level 3 cause why this alarm has been raised |
integer (int64) |
cause4 |
The level 4 cause why this alarm has been raised |
integer (int64) |
3.5. AlarmRecordsListResource
Name | Description | Schema |
---|---|---|
acknowledged |
Whether this alarm is acknowledged or not |
boolean |
acknowledgedBy |
Name of the user who acknowledged this alarm |
string |
acknowledgedOn |
Time when this alarm was acknowledged on(ISO 8601) |
string (date-time) |
action1 |
The level 1 action taken for on regard to this alarm |
|
action2 |
The level 2 action taken for on regard to this alarm |
|
action3 |
The level 3 action taken for on regard to this alarm |
|
action4 |
The level 4 action taken for on regard to this alarm |
|
actionCommentId |
The comment thread Id for action |
integer (int64) |
actionRequired |
Whether this alarm record requires actions to be selected |
boolean |
actionTreeId |
The reason tree Id which is configured as action tree for this alarms template |
integer (int64) |
alarmDescription |
The description for this alarm |
string |
alarmId |
The unique ID for this Alarm Record |
integer (int64) |
alarmRule |
The title of the Alarm Template this alarm is based on |
string |
alarmType |
The Alarm Type |
|
canAcknowledge |
Whether this alarm record can be acknoledged |
boolean |
canPerform |
Whether this alarm record can be editied to add cause and actions |
boolean |
cause1 |
The level 1 cause why this alarm has been raised |
|
cause2 |
The level 2 cause why this alarm has been raised |
|
cause3 |
The level 3 cause why this alarm has been raised |
|
cause4 |
The level 4 cause why this alarm has been raised |
|
causeCommentId |
The comment thread Id for cause |
integer (int64) |
causeRequired |
Whether this alarm record requires causes to be selected |
boolean |
causeTreeId |
The reason tree Id which is configured as cause tree for this alarms template |
integer (int64) |
duration |
The duration (in seconds) this alarm spans from starting to end |
integer (int64) |
endTime |
The end time(ISO 8601) of this alarm |
string (date-time) |
endValue |
Value of the variable’s test when the Alarm is closed |
object |
eventCount |
Number of event this alarm spans after alarm is triggered and until its ends |
integer (int64) |
eventSubTypeDescription |
The event SubType Description, eg Batch |
string |
links |
< Link > array |
|
priority |
The severity of this alarm |
|
sourceUnit |
The unit where the alarm is raised |
|
sourceVariable |
The variable for which the alarm got raised |
|
sourceVariableDataType |
Data type of the alarm source veriable (ex. Integer, String..) |
|
startTime |
The start time(ISO 8601) of this alarm |
string (date-time) |
startValue |
Value of the variable’s test when the Alarm is opened |
object |
3.7. CollectionResource«ReasonTreeNodeDto»
Name | Schema |
---|---|
collection |
|
content |
< ReasonTreeNodeDto > array |
links |
< Link > array |
3.8. Comment
Name | Description | Schema |
---|---|---|
commentId |
The Id of the comment. Required field while updating the comment |
integer (int64) |
commentText |
comment text |
string |
3.9. CommentInfo
Name | Description | Schema |
---|---|---|
commentId |
The Id of the comment record. |
integer (int64) |
commentText |
comment text |
string |
commentTime |
comment creation time |
string (date-time) |
commentType |
Type of comment, Alarm Action or Alarm Cause Comments |
enum (ActionComment, CauseComment) |
threadId |
Id of the Thread the comment belongs to. |
integer (int64) |
user |
comment owner |
3.10. DataValue
Name | Schema |
---|---|
quality |
boolean |
timeStamp |
string (date-time) |
value |
string |
3.13. IdNameValue
Generic object to hold Id value pair
Name | Description | Schema |
---|---|---|
id |
ID for thos pair |
integer (int64) |
name |
Name of this pair |
string |
3.15. PrivilegeSet
Name | Schema |
---|---|
category |
string |
description |
string |
displayName |
string |
icon |
string |
id |
integer (int32) |
scope |
string |
3.16. ReasonDto
Name | Description | Schema |
---|---|---|
reasonId |
The unique identifier of the reason |
integer (int64) |
reasonName |
The name of the reason |
string |
3.17. ReasonTreeHeaderDto
Name | Description | Schema |
---|---|---|
levelName |
Name of the level can be 1-level1 2-level2 3-level3 4-level4 of a reason |
string |
reasonLevel |
The level can be 1-level1 2-level2 3-level3 4-level4 of the reason |
integer (int32) |
3.18. ReasonTreeNodeDto
Name | Description | Schema |
---|---|---|
categoryId |
The categoryId of the reason |
integer (int64) |
categoryName |
The category name of reason |
string |
children |
The List of the reasonTreeNode |
< ReasonTreeNodeDto > array |
links |
< Link > array |
|
nodeId |
The Unique identifier of node |
integer (int64) |
parentNodeId |
The Unique identifier of parentNode |
integer (int64) |
reasonId |
The Unique identifier of reason |
integer (int64) |
reasonLevel |
The level can be 1-level1 2-level2 3-level3 4-level4 of reason |
integer (int32) |
reasonName |
The name of the reason |
string |
treeId |
The Unique identifier of tree |
integer (int64) |
3.19. TopNReasonsDto
Name | Description | Schema |
---|---|---|
level1 |
The level1 of reason |
|
level2 |
The level2 of reason |
|
level3 |
The level3 of reason |
|
level4 |
The level4 of reason |
3.20. TopNReasonsDtoResponse
Name | Schema |
---|---|
content |
< TopNReasonsDto > array |
links |
< Link > array |
3.21. UserSettingRequest
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
The application specific settings, Eg:- 'App Name' : {'property1' : 'value' , 'property2' : 'value'} } |
object |
viewName |
string |
3.22. UserSettingResource
Name | Description | Schema |
---|---|---|
appId |
integer (int32) |
|
data |
object |
|
defaultSetting |
Example : |
boolean |
links |
< Link > array |
|
viewName |
string |
3.23. VariableInfoesponse
Name | Description | Schema |
---|---|---|
links |
< Link > array |
|
variableDataType |
Data type of the veriable (ex. Integer, String..) |
|
variableEngUnit |
The engineerng unit of the variable (ex. Kg, Lux..) |
string |
variableHistory |
List of test values of the variable between the variableHistoryStartTime and variableHistoryEndTime |
< DataValue > array |
variableHistoryEndTime |
Variable History End Time calculated based on the Site parameter and alarm end time or alarm start time |
string (date-time) |
variableHistoryStartTime |
Variable History Start Time calculated based on the Site parameter and alarm start time |
string (date-time) |
variableId |
The source variable ID of Alarm Record |
integer (int64) |
variableName |
The Name of the variable on which the alarm is raised |
string |
variableSpecificationLimit |
List of the variable specification between the variableHistoryStartTime and variableHistoryEndTime irrespective of the product |
< VariableSpecificationLimit > array |
variableTrigger |
The Id value pair of the trigger of this variable that raised alarm |
3.24. VariableSpecificationLimit
Name | Schema |
---|---|
lowerEntry |
string |
lowerReject |
string |
lowerUser |
string |
lowerWarning |
string |
product |
integer (int64) |
productDescription |
string |
startTime |
string (date-time) |
target |
string |
upperEntry |
string |
upperReject |
string |
upperUser |
string |
upperWarning |
string |
variable |
integer (int64) |
4. Security
4.1. oauth
Type : oauth2
Flow : accessCode
Token URL : http://localhost:8080/uaa/oauth/authorize
Token URL : http://localhost:8080/uaa/oauth/token
Name | Description |
---|---|
default |
Default oauth2 scope. |