POST WorkflowSettings/SaveWorkflowSettings?identifier={identifier}&loggedInUser={loggedInUser}&cascadeLevel={cascadeLevel}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier | string |
Required |
|
| loggedInUser | string |
Required |
|
| cascadeLevel | string |
Required |
Body Parameters
WorkflowSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| F8 |
value of radio button for what happens after a study is marked dictated |
string |
None. |
| F9 |
value for radio button for what happens after a study is skipped |
string |
None. |
| SkipReserved |
Whether studies reserved by others should be skipped |
boolean |
None. |
| SkipDisplayed |
Whether studies displayed by others should be skipped |
boolean |
None. |
| PickTop |
Whether the top study in the list should be picked |
boolean |
None. |
| NotifyOpen |
Whether the system should be notified when a study is opened |
boolean |
None. |
| GroupReport |
Whether studies should be grouped |
boolean |
None. |
| Grouping |
value for radio button for which criteria the studies should be grouped by |
string |
None. |
| F8Action |
Action to perform when F8 clicked valid values: markDictated, reserveForMe, reserveForOthers default value: markDictated. |
string |
None. |
| SaveQBE | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"F8": "sample string 1",
"F9": "sample string 2",
"SkipReserved": true,
"SkipDisplayed": true,
"PickTop": true,
"NotifyOpen": true,
"GroupReport": true,
"Grouping": "sample string 8",
"F8Action": "sample string 9",
"SaveQBE": true
}
application/xml, text/xml
Sample:
<WorkflowSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Workflow"> <F8>sample string 1</F8> <F8Action>sample string 9</F8Action> <F9>sample string 2</F9> <GroupReport>true</GroupReport> <Grouping>sample string 8</Grouping> <NotifyOpen>true</NotifyOpen> <PickTop>true</PickTop> <SaveQBE>true</SaveQBE> <SkipDisplayed>true</SkipDisplayed> <SkipReserved>true</SkipReserved> </WorkflowSettings>
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>