POST WorkflowSettings/SavePowerJacketSettings?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
PJInfoPanelModelName | Description | Type | Additional information |
---|---|---|---|
UserInfoUid | integer |
None. |
|
Panes | Collection of PJPaneModel |
None. |
|
ConfiguredReportViewer | integer |
None. |
|
SplitterHeight | integer |
None. |
|
WindowHeight | integer |
None. |
|
WindowWidth | integer |
None. |
|
WindowX | integer |
None. |
|
WindowY | integer |
None. |
|
IsShowAddressbar | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserInfoUid": 1, "Panes": [ { "DefaultApplication": 1, "IsAutoShowReport": true, "Pane": 3 }, { "DefaultApplication": 1, "IsAutoShowReport": true, "Pane": 3 } ], "ConfiguredReportViewer": 2, "SplitterHeight": 3, "WindowHeight": 4, "WindowWidth": 5, "WindowX": 6, "WindowY": 7, "IsShowAddressbar": true }
application/xml, text/xml
Sample:
<PJInfoPanelModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Workflow"> <ConfiguredReportViewer>2</ConfiguredReportViewer> <IsShowAddressbar>true</IsShowAddressbar> <Panes> <PJPaneModel> <DefaultApplication>1</DefaultApplication> <IsAutoShowReport>true</IsAutoShowReport> <Pane>3</Pane> </PJPaneModel> <PJPaneModel> <DefaultApplication>1</DefaultApplication> <IsAutoShowReport>true</IsAutoShowReport> <Pane>3</Pane> </PJPaneModel> </Panes> <SplitterHeight>3</SplitterHeight> <UserInfoUid>1</UserInfoUid> <WindowHeight>4</WindowHeight> <WindowWidth>5</WindowWidth> <WindowX>6</WindowX> <WindowY>7</WindowY> </PJInfoPanelModel>
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>