GET v1/order/specimeninfo?EMRLinkOrderID={EMRLinkOrderID}

Get Specimen Storage and Handling Info: Get a list of specimen storage and handling info for each test in a given order.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
EMRLinkOrderID

string

Required

Body Parameters

None.

Response Information

Resource Description

OrderSpecimenInfoResponse
NameDescriptionTypeAdditional information
OrderSpecimenInfoList

Collection of OrderSpecimenInfo objects

Collection of OrderSpecimenInfo

None.

Error

Will be set to True if any errors occur during the processing of the API method.

boolean

None.

ErrorMessage

Will contain an error message string if Error is True.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "OrderSpecimenInfoList": [
    {
      "LabCode": "sample string 1",
      "Type": "sample string 2",
      "Volume": "sample string 3",
      "MinVolume": "sample string 4",
      "Container": "sample string 5",
      "Handling": "sample string 6",
      "Storage": "sample string 7"
    },
    {
      "LabCode": "sample string 1",
      "Type": "sample string 2",
      "Volume": "sample string 3",
      "MinVolume": "sample string 4",
      "Container": "sample string 5",
      "Handling": "sample string 6",
      "Storage": "sample string 7"
    }
  ],
  "Error": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<OrderSpecimenInfoResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>true</Error>
  <ErrorMessage>sample string 2</ErrorMessage>
  <OrderSpecimenInfoList>
    <OrderSpecimenInfo>
      <LabCode>sample string 1</LabCode>
      <Type>sample string 2</Type>
      <Volume>sample string 3</Volume>
      <MinVolume>sample string 4</MinVolume>
      <Container>sample string 5</Container>
      <Handling>sample string 6</Handling>
      <Storage>sample string 7</Storage>
    </OrderSpecimenInfo>
    <OrderSpecimenInfo>
      <LabCode>sample string 1</LabCode>
      <Type>sample string 2</Type>
      <Volume>sample string 3</Volume>
      <MinVolume>sample string 4</MinVolume>
      <Container>sample string 5</Container>
      <Handling>sample string 6</Handling>
      <Storage>sample string 7</Storage>
    </OrderSpecimenInfo>
  </OrderSpecimenInfoList>
</OrderSpecimenInfoResponse>