GET api/WorkflowEngine/Study/GetStudyLockInfo?studyEuid={studyEuid}&dataSource={dataSource}
Gets the study lock information.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
studyEuid |
The study euid. |
string |
Required |
dataSource | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of StudyLockInfoName | Description | Type | Additional information |
---|---|---|---|
UserLoginName | string |
None. |
|
UserFullName | string |
None. |
|
LockCreatedDate | date |
None. |
|
LockDuration | time interval |
None. |
|
LockType | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "UserLoginName": "sample string 1", "UserFullName": "sample string 2", "LockCreatedDate": "2025-08-02T22:05:17.9579634-05:00", "LockDuration": "00:00:00.1234567", "LockType": "sample string 3" }, { "UserLoginName": "sample string 1", "UserFullName": "sample string 2", "LockCreatedDate": "2025-08-02T22:05:17.9579634-05:00", "LockDuration": "00:00:00.1234567", "LockType": "sample string 3" } ]
application/octet-stream
Sample:
[{"UserLoginName":"sample string 1","UserFullName":"sample string 2","LockCreatedDate":"2025-08-02T22:05:17.9579634-05:00","LockDuration":"00:00:00.1234567","LockType":"sample string 3"},{"UserLoginName":"sample string 1","UserFullName":"sample string 2","LockCreatedDate":"2025-08-02T22:05:17.9579634-05:00","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-08-02T22:05:17.9579634-05:00</LockCreatedDate> <LockDuration>PT0.1234567S</LockDuration> <LockType>sample string 3</LockType> <UserFullName>sample string 2</UserFullName> <UserLoginName>sample string 1</UserLoginName> </StudyLockInfo> <StudyLockInfo> <LockCreatedDate>2025-08-02T22:05:17.9579634-05:00</LockCreatedDate> <LockDuration>PT0.1234567S</LockDuration> <LockType>sample string 3</LockType> <UserFullName>sample string 2</UserFullName> <UserLoginName>sample string 1</UserLoginName> </StudyLockInfo> </ArrayOfStudyLockInfo>