POST DisplayStates/GetByListOfUid
Gets the display states by identifier.
Request Information
URI Parameters
None.
Body Parameters
The display state request.
DisplayStateRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| UserLogin | Gets or sets the user login. | string | None. | 
| studyUids | Gets or sets the studyUids. | Collection of string | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "UserLogin": "sample string 1",
  "studyUids": [
    "sample string 1",
    "sample string 2"
  ]
}
        application/xml, text/xml
            Sample:
<DisplayStateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.DisplayStates">
  <UserLogin>sample string 1</UserLogin>
  <studyUids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </studyUids>
</DisplayStateRequest>
        Response Information
Resource Description
Collection of stringResponse Formats
application/json, text/json
            Sample:
        [ "sample string 1", "sample string 2" ]
application/xml, text/xml
            Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfstring>