POST Worklist/ReplaceLinkFolder
Request Information
URI Parameters
None.
Body Parameters
LinkFolderReplaceRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| DuplicateUuid | string | None. | |
| 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:
        
{
  "DuplicateUuid": "sample string 1",
  "CurrentParentUuid": "sample string 2",
  "NewParentUuid": "sample string 3",
  "Uuid": "sample string 4",
  "DisplayName": "sample string 5",
  "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 6"
}
        application/xml, text/xml
            Sample:
<LinkFolderReplaceRequest 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 5</DisplayName>
  <UserLogin>sample string 6</UserLogin>
  <Uuid>sample string 4</Uuid>
  <CurrentParentUuid>sample string 2</CurrentParentUuid>
  <NewParentUuid>sample string 3</NewParentUuid>
  <DuplicateUuid>sample string 1</DuplicateUuid>
</LinkFolderReplaceRequest>
        Response Information
Resource Description
LinkFolderReplaceResult| Name | 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:
<LinkFolderReplaceResult 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> </LinkFolderReplaceResult>