POST Worklist/MoveItemstoLinkFolder

Moves the records to link folder.

Request Information

URI Parameters

None.

Body Parameters

The parameters.

LinkFolderMoveItemsParams
NameDescriptionTypeAdditional information
SourceLinkFolderUuid

Uuid of the Source LinkFolder(From)

string

None.

TargetLinkFolderUuid

Uuid of the Destination LinkFolder(To)

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:
{
  "SourceLinkFolderUuid": "sample string 1",
  "TargetLinkFolderUuid": "sample string 2",
  "Items": [
    {
      "Identifier": "sample string 1",
      "IsDisplayState": true
    },
    {
      "Identifier": "sample string 1",
      "IsDisplayState": true
    }
  ],
  "UserLogin": "sample string 3"
}

application/xml, text/xml

Sample:
<LinkFolderMoveItemsParams 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>
  <SourceLinkFolderUuid>sample string 1</SourceLinkFolderUuid>
  <TargetLinkFolderUuid>sample string 2</TargetLinkFolderUuid>
  <UserLogin>sample string 3</UserLogin>
</LinkFolderMoveItemsParams>

Response Information

Resource Description

MoveItemstoLinkFolderResult
NameDescriptionTypeAdditional 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:
<MoveItemstoLinkFolderResult 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>
</MoveItemstoLinkFolderResult>