GET Patient/GetPanels?DonorId={DonorId}

Panels for Donor

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DonorId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Panel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

IsCustomPanel

boolean

None.

TestingMethod

string

None.

CollectionType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 1",
    "IsCustomPanel": true,
    "TestingMethod": "sample string 3",
    "CollectionType": "sample string 4"
  },
  {
    "Id": 1,
    "Name": "sample string 1",
    "IsCustomPanel": true,
    "TestingMethod": "sample string 3",
    "CollectionType": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPanel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avertest.Aversys.DataLayer.Patients">
  <Panel>
    <CollectionType>sample string 4</CollectionType>
    <Id>1</Id>
    <IsCustomPanel>true</IsCustomPanel>
    <Name>sample string 1</Name>
    <TestingMethod>sample string 3</TestingMethod>
  </Panel>
  <Panel>
    <CollectionType>sample string 4</CollectionType>
    <Id>1</Id>
    <IsCustomPanel>true</IsCustomPanel>
    <Name>sample string 1</Name>
    <TestingMethod>sample string 3</TestingMethod>
  </Panel>
</ArrayOfPanel>