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. |
| SkipPreliminary | boolean |
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. |
|
| NuclearQuantificationLaunch | boolean |
None. |
|
| AllImagesAlert | Modality |
None. |
|
| RPLast | Modality |
None. |
Request Formats
application/json, text/json
Sample:
{
"F8": "sample string 1",
"F9": "sample string 2",
"SkipPreliminary": true,
"SkipReserved": true,
"SkipDisplayed": true,
"PickTop": true,
"NotifyOpen": true,
"GroupReport": true,
"Grouping": "sample string 9",
"F8Action": "sample string 10",
"SaveQBE": true,
"NuclearQuantificationLaunch": true,
"AllImagesAlert": {
"MG": true,
"CT": true,
"MR": true,
"BD": true,
"NM": true,
"IO": true,
"CR": true,
"DX": true,
"PT": true,
"RF": true,
"US": true,
"XA": true,
"OT": true
},
"RPLast": {
"MG": true,
"CT": true,
"MR": true,
"BD": true,
"NM": true,
"IO": true,
"CR": true,
"DX": true,
"PT": true,
"RF": true,
"US": true,
"XA": true,
"OT": 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">
<AllImagesAlert>
<BD>true</BD>
<CR>true</CR>
<CT>true</CT>
<DX>true</DX>
<IO>true</IO>
<MG>true</MG>
<MR>true</MR>
<NM>true</NM>
<OT>true</OT>
<PT>true</PT>
<RF>true</RF>
<US>true</US>
<XA>true</XA>
</AllImagesAlert>
<F8>sample string 1</F8>
<F8Action>sample string 10</F8Action>
<F9>sample string 2</F9>
<GroupReport>true</GroupReport>
<Grouping>sample string 9</Grouping>
<NotifyOpen>true</NotifyOpen>
<NuclearQuantificationLaunch>true</NuclearQuantificationLaunch>
<PickTop>true</PickTop>
<RPLast>
<BD>true</BD>
<CR>true</CR>
<CT>true</CT>
<DX>true</DX>
<IO>true</IO>
<MG>true</MG>
<MR>true</MR>
<NM>true</NM>
<OT>true</OT>
<PT>true</PT>
<RF>true</RF>
<US>true</US>
<XA>true</XA>
</RPLast>
<SaveQBE>true</SaveQBE>
<SkipDisplayed>true</SkipDisplayed>
<SkipPreliminary>true</SkipPreliminary>
<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>