GET Study/GetStudyLockCountInfo?userLogin={userLogin}

Gets the study lock count.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userLogin

The user login.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StudyLockCountDto
NameDescriptionTypeAdditional information
StudyId

integer

None.

StudyInstanceEuid

string

None.

LockCount

integer

None.

IsLocked

boolean

None.

IsReservedByOthers

boolean

None.

IsSelfReserved

boolean

None.

DataSource

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StudyId": 1,
    "StudyInstanceEuid": "sample string 2",
    "LockCount": 3,
    "IsLocked": true,
    "IsReservedByOthers": true,
    "IsSelfReserved": true,
    "DataSource": "sample string 7"
  },
  {
    "StudyId": 1,
    "StudyInstanceEuid": "sample string 2",
    "LockCount": 3,
    "IsLocked": true,
    "IsReservedByOthers": true,
    "IsSelfReserved": true,
    "DataSource": "sample string 7"
  }
]

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 7</DataSource>
    <IsLocked>true</IsLocked>
    <IsReservedByOthers>true</IsReservedByOthers>
    <IsSelfReserved>true</IsSelfReserved>
    <LockCount>3</LockCount>
    <StudyId>1</StudyId>
    <StudyInstanceEuid>sample string 2</StudyInstanceEuid>
  </StudyLockCountDto>
  <StudyLockCountDto>
    <DataSource>sample string 7</DataSource>
    <IsLocked>true</IsLocked>
    <IsReservedByOthers>true</IsReservedByOthers>
    <IsSelfReserved>true</IsSelfReserved>
    <LockCount>3</LockCount>
    <StudyId>1</StudyId>
    <StudyInstanceEuid>sample string 2</StudyInstanceEuid>
  </StudyLockCountDto>
</ArrayOfStudyLockCountDto>