POST Worklist/UpdateLinkFolderParent
Request Information
URI Parameters
None.
Body Parameters
LinkFolderParentUpdateRequestName | Description | Type | Additional information |
---|---|---|---|
CurrentParentUuid | string |
None. |
|
NewParentUuid | string |
None. |
|
Uuid |
Uuid of the LinkFolder |
string |
None. |
DisplayName |
New DisplayName of the the LinkFolder. |
string |
None. |
Columns |
List of columns |
Collection of ListColumn |
None. |
UserLogin |
The login name of the User. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CurrentParentUuid": "sample string 1", "NewParentUuid": "sample string 2", "Uuid": "sample string 3", "DisplayName": "sample string 4", "Columns": [ { "Name": "sample string 1", "Type": "sample string 2", "Label": "sample string 3", "Order": 1, "Width": 1.0, "SortOrder": 1, "SortDirection": 1, "IsHidden": true }, { "Name": "sample string 1", "Type": "sample string 2", "Label": "sample string 3", "Order": 1, "Width": 1.0, "SortOrder": 1, "SortDirection": 1, "IsHidden": true } ], "UserLogin": "sample string 5" }
application/xml, text/xml
Sample:
<LinkFolderParentUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Worklists"> <Columns> <ListColumn> <IsHidden>true</IsHidden> <Label>sample string 3</Label> <Name>sample string 1</Name> <Order>1</Order> <SortDirection>1</SortDirection> <SortOrder>1</SortOrder> <Type>sample string 2</Type> <Width>1</Width> </ListColumn> <ListColumn> <IsHidden>true</IsHidden> <Label>sample string 3</Label> <Name>sample string 1</Name> <Order>1</Order> <SortDirection>1</SortDirection> <SortOrder>1</SortOrder> <Type>sample string 2</Type> <Width>1</Width> </ListColumn> </Columns> <DisplayName>sample string 4</DisplayName> <UserLogin>sample string 5</UserLogin> <Uuid>sample string 3</Uuid> <CurrentParentUuid>sample string 1</CurrentParentUuid> <NewParentUuid>sample string 2</NewParentUuid> </LinkFolderParentUpdateRequest>
Response Information
Resource Description
LinkFolderParentUpdateResultName | Description | Type | Additional information |
---|---|---|---|
Succeeded |
Denotes whether the Link Folder process request has been successful or not. |
boolean |
None. |
Remarks |
Summarize the Link Folder process result. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Succeeded": true, "Remarks": "sample string 2" }
application/xml, text/xml
Sample:
<LinkFolderParentUpdateResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Worklists"> <Remarks>sample string 2</Remarks> <Succeeded>true</Succeeded> </LinkFolderParentUpdateResult>