POST Worklist/UpdateLinkFolder
Update Link Folder
Request Information
URI Parameters
None.
Body Parameters
LinkFolderUpdateRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| 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:
        
{
  "Uuid": "sample string 1",
  "DisplayName": "sample string 2",
  "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 3"
}
        application/xml, text/xml
            Sample:
<LinkFolderUpdateRequest 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 2</DisplayName>
  <UserLogin>sample string 3</UserLogin>
  <Uuid>sample string 1</Uuid>
</LinkFolderUpdateRequest>
        Response Information
Resource Description
LinkFolderUpdateResult
LinkFolderUpdateResult| 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:
<LinkFolderUpdateResult 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> </LinkFolderUpdateResult>