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 StudyLockInfoName | 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. |
LockType |
Gets or sets the lock type |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "UserLoginName": "sample string 1", "UserFullName": "sample string 2", "LockCreatedDate": "2025-04-30T18:37:24", "LockDuration": "00:00:00.1234567", "LockType": "sample string 3" }, { "UserLoginName": "sample string 1", "UserFullName": "sample string 2", "LockCreatedDate": "2025-04-30T18:37:24", "LockDuration": "00:00:00.1234567", "LockType": "sample string 3" } ]
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> <LockCreatedDate>2025-04-30T18:37:24.3005352+09:30</LockCreatedDate> <LockDuration>PT0.1234567S</LockDuration> <LockType>sample string 3</LockType> <UserFullName>sample string 2</UserFullName> <UserLoginName>sample string 1</UserLoginName> </StudyLockInfo> <StudyLockInfo> <LockCreatedDate>2025-04-30T18:37:24.3005352+09:30</LockCreatedDate> <LockDuration>PT0.1234567S</LockDuration> <LockType>sample string 3</LockType> <UserFullName>sample string 2</UserFullName> <UserLoginName>sample string 1</UserLoginName> </StudyLockInfo> </ArrayOfStudyLockInfo>