GET Study/GetStudyLockCountInfo?userLogin={userLogin}
Gets the study lock count.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userLogin |
The user login. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudyLockCountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| StudyId | integer |
None. |
|
| StudyInstanceEuid | string |
None. |
|
| LockCount | integer |
None. |
|
| IsLocked | boolean |
None. |
|
| IsReservedByOthers | boolean |
None. |
|
| IsSelfReserved | boolean |
None. |
|
| IsSelfLocked | boolean |
None. |
|
| IsSelfInProgress | boolean |
None. |
|
| IsInProgressByOthers | boolean |
None. |
|
| DataSource | string |
None. |
|
| StudyStatusCD | integer |
None. |
|
| ReservedCreator | string |
None. |
|
| ReservedAssignee | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StudyId": 1,
"StudyInstanceEuid": "sample string 2",
"LockCount": 3,
"IsLocked": true,
"IsReservedByOthers": true,
"IsSelfReserved": true,
"IsSelfLocked": true,
"IsSelfInProgress": true,
"IsInProgressByOthers": true,
"DataSource": "sample string 10",
"StudyStatusCD": 1,
"ReservedCreator": "sample string 11",
"ReservedAssignee": "sample string 12"
},
{
"StudyId": 1,
"StudyInstanceEuid": "sample string 2",
"LockCount": 3,
"IsLocked": true,
"IsReservedByOthers": true,
"IsSelfReserved": true,
"IsSelfLocked": true,
"IsSelfInProgress": true,
"IsInProgressByOthers": true,
"DataSource": "sample string 10",
"StudyStatusCD": 1,
"ReservedCreator": "sample string 11",
"ReservedAssignee": "sample string 12"
}
]
application/xml, text/xml
Sample:
<ArrayOfStudyLockCountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Common.Model">
<StudyLockCountDto>
<DataSource>sample string 10</DataSource>
<IsInProgressByOthers>true</IsInProgressByOthers>
<IsLocked>true</IsLocked>
<IsReservedByOthers>true</IsReservedByOthers>
<IsSelfInProgress>true</IsSelfInProgress>
<IsSelfLocked>true</IsSelfLocked>
<IsSelfReserved>true</IsSelfReserved>
<LockCount>3</LockCount>
<ReservedAssignee>sample string 12</ReservedAssignee>
<ReservedCreator>sample string 11</ReservedCreator>
<StudyId>1</StudyId>
<StudyInstanceEuid>sample string 2</StudyInstanceEuid>
<StudyStatusCD>1</StudyStatusCD>
</StudyLockCountDto>
<StudyLockCountDto>
<DataSource>sample string 10</DataSource>
<IsInProgressByOthers>true</IsInProgressByOthers>
<IsLocked>true</IsLocked>
<IsReservedByOthers>true</IsReservedByOthers>
<IsSelfInProgress>true</IsSelfInProgress>
<IsSelfLocked>true</IsSelfLocked>
<IsSelfReserved>true</IsSelfReserved>
<LockCount>3</LockCount>
<ReservedAssignee>sample string 12</ReservedAssignee>
<ReservedCreator>sample string 11</ReservedCreator>
<StudyId>1</StudyId>
<StudyInstanceEuid>sample string 2</StudyInstanceEuid>
<StudyStatusCD>1</StudyStatusCD>
</StudyLockCountDto>
</ArrayOfStudyLockCountDto>