POST Worklist/AddItemsToLinkFolder
Adds the records to link folder.
Request Information
URI Parameters
None.
Body Parameters
The parameters.
LinkFolderAddItemsParams| Name | Description | Type | Additional information | 
|---|---|---|---|
| LinkFolderUuid | Uuid of the LinkFolder | string | None. | 
| Items | List of DICOM Study instance euids or display state uuid. | Collection of LinkFolderItem | None. | 
| UserLogin | The login name of the User. | string | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "LinkFolderUuid": "sample string 1",
  "Items": [
    {
      "Identifier": "sample string 1",
      "IsDisplayState": true
    },
    {
      "Identifier": "sample string 1",
      "IsDisplayState": true
    }
  ],
  "UserLogin": "sample string 2"
}
        application/xml, text/xml
            Sample:
<LinkFolderAddItemsParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Worklists">
  <Items>
    <LinkFolderItem>
      <Identifier>sample string 1</Identifier>
      <IsDisplayState>true</IsDisplayState>
    </LinkFolderItem>
    <LinkFolderItem>
      <Identifier>sample string 1</Identifier>
      <IsDisplayState>true</IsDisplayState>
    </LinkFolderItem>
  </Items>
  <LinkFolderUuid>sample string 1</LinkFolderUuid>
  <UserLogin>sample string 2</UserLogin>
</LinkFolderAddItemsParams>
        Response Information
Resource Description
AddItemstoLinkFolderResult| 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:
<AddItemstoLinkFolderResult 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> </AddItemstoLinkFolderResult>