GET Study/GetStudyLockInfo?studyEuid={studyEuid}
Gets the study lock information.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| studyEuid |
The study euid. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudyLockInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| UserLoginName |
The User Login Name |
string |
None. |
| UserFullName |
User FullName |
string |
None. |
| LockCreatedDate |
Lock Created Date |
date |
None. |
| LockDuration |
Gets or sets the duration of the lock. |
time interval |
None. |
| LockExpirationDate | date |
None. |
|
| LockType |
Gets or sets the lock type |
string |
None. |
| InProgress | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserLoginName": "sample string 1",
"UserFullName": "sample string 2",
"LockCreatedDate": "2025-12-15T06:44:54",
"LockDuration": "00:00:00.1234567",
"LockExpirationDate": "2025-12-15T06:44:54",
"LockType": "sample string 3",
"InProgress": true
},
{
"UserLoginName": "sample string 1",
"UserFullName": "sample string 2",
"LockCreatedDate": "2025-12-15T06:44:54",
"LockDuration": "00:00:00.1234567",
"LockExpirationDate": "2025-12-15T06:44:54",
"LockType": "sample string 3",
"InProgress": true
}
]
application/xml, text/xml
Sample:
<ArrayOfStudyLockInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Study">
<StudyLockInfo>
<InProgress>true</InProgress>
<LockCreatedDate>2025-12-15T06:44:54.7571521-04:00</LockCreatedDate>
<LockDuration>PT0.1234567S</LockDuration>
<LockExpirationDate>2025-12-15T06:44:54.7571521-04:00</LockExpirationDate>
<LockType>sample string 3</LockType>
<UserFullName>sample string 2</UserFullName>
<UserLoginName>sample string 1</UserLoginName>
</StudyLockInfo>
<StudyLockInfo>
<InProgress>true</InProgress>
<LockCreatedDate>2025-12-15T06:44:54.7571521-04:00</LockCreatedDate>
<LockDuration>PT0.1234567S</LockDuration>
<LockExpirationDate>2025-12-15T06:44:54.7571521-04:00</LockExpirationDate>
<LockType>sample string 3</LockType>
<UserFullName>sample string 2</UserFullName>
<UserLoginName>sample string 1</UserLoginName>
</StudyLockInfo>
</ArrayOfStudyLockInfo>