GET api/Common/GetFrozenLabList?LabAccountID={LabAccountID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
LabAccountID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FrozenAccountInfo
NameDescriptionTypeAdditional information
AccountID

integer

None.

AccountName

string

None.

AccDisplayName

string

None.

LabAccountID

integer

None.

LabOrgID

integer

None.

GUID

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountID": 1,
    "AccountName": "sample string 2",
    "AccDisplayName": "sample string 3",
    "LabAccountID": 4,
    "LabOrgID": 5,
    "GUID": "sample string 6"
  },
  {
    "AccountID": 1,
    "AccountName": "sample string 2",
    "AccDisplayName": "sample string 3",
    "LabAccountID": 4,
    "LabOrgID": 5,
    "GUID": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFrozenAccountInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VitalOrder_v2_ServerApp.DTO">
  <FrozenAccountInfo>
    <AccDisplayName>sample string 3</AccDisplayName>
    <AccountID>1</AccountID>
    <AccountName>sample string 2</AccountName>
    <GUID>sample string 6</GUID>
    <LabAccountID>4</LabAccountID>
    <LabOrgID>5</LabOrgID>
  </FrozenAccountInfo>
  <FrozenAccountInfo>
    <AccDisplayName>sample string 3</AccDisplayName>
    <AccountID>1</AccountID>
    <AccountName>sample string 2</AccountName>
    <GUID>sample string 6</GUID>
    <LabAccountID>4</LabAccountID>
    <LabOrgID>5</LabOrgID>
  </FrozenAccountInfo>
</ArrayOfFrozenAccountInfo>