POST Worklist/UpdateUnreadTimeThreshold
Request Information
URI Parameters
None.
Body Parameters
UnreadTimeThresholdRequestName | Description | Type | Additional information |
---|---|---|---|
FolderType | FolderType |
None. |
|
FolderId | integer |
None. |
|
TimeDisplayEnabled | boolean |
None. |
|
ProgressBarEnabled | boolean |
None. |
|
Threshold | Threshold |
None. |
|
Color | Color |
None. |
Request Formats
application/json, text/json
Sample:
{ "FolderType": 0, "FolderId": 1, "TimeDisplayEnabled": true, "ProgressBarEnabled": true, "Threshold": { "Warning": 1, "Alert": 2 }, "Color": { "Default": "sample string 1", "Warning": "sample string 2", "Alert": "sample string 3" } }
application/xml, text/xml
Sample:
<UnreadTimeThresholdRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Worklists"> <Color> <Alert>sample string 3</Alert> <Default>sample string 1</Default> <Warning>sample string 2</Warning> </Color> <FolderId>1</FolderId> <FolderType>Default</FolderType> <ProgressBarEnabled>true</ProgressBarEnabled> <Threshold> <Alert>2</Alert> <Warning>1</Warning> </Threshold> <TimeDisplayEnabled>true</TimeDisplayEnabled> </UnreadTimeThresholdRequest>
Response Information
Resource Description
UnreadTimeThresholdResultName | Description | Type | Additional information |
---|---|---|---|
ProgressBarEnabled | boolean |
None. |
|
TimeDisplayEnabled | boolean |
None. |
|
Threshold | Threshold |
None. |
|
Color | Color |
None. |
|
FolderType | FolderType |
None. |
|
IsSuccess | boolean |
None. |
|
Reason | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ProgressBarEnabled": true, "TimeDisplayEnabled": true, "Threshold": { "Warning": 1, "Alert": 2 }, "Color": { "Default": "sample string 1", "Warning": "sample string 2", "Alert": "sample string 3" }, "FolderType": 0, "IsSuccess": true, "Reason": "sample string 4" }
application/xml, text/xml
Sample:
<UnreadTimeThresholdResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Worklists"> <Color> <Alert>sample string 3</Alert> <Default>sample string 1</Default> <Warning>sample string 2</Warning> </Color> <FolderType>Default</FolderType> <IsSuccess>true</IsSuccess> <ProgressBarEnabled>true</ProgressBarEnabled> <Reason>sample string 4</Reason> <Threshold> <Alert>2</Alert> <Warning>1</Warning> </Threshold> <TimeDisplayEnabled>true</TimeDisplayEnabled> </UnreadTimeThresholdResult>