GET api/SuperAdmin/GetAllLabTests?query={query}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
query

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GET_ALL_LAB_TESTS_Result
NameDescriptionTypeAdditional information
LabTestID

integer

None.

LabTestTitle

string

None.

LabTestPrice

decimal number

None.

AddedDateTime

date

None.

Status

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LabTestID": 1,
    "LabTestTitle": "sample string 2",
    "LabTestPrice": 3.0,
    "AddedDateTime": "2024-09-19T07:35:44.704473-05:00",
    "Status": true
  },
  {
    "LabTestID": 1,
    "LabTestTitle": "sample string 2",
    "LabTestPrice": 3.0,
    "AddedDateTime": "2024-09-19T07:35:44.704473-05:00",
    "Status": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfGET_ALL_LAB_TESTS_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapiensIn.Models">
  <GET_ALL_LAB_TESTS_Result>
    <AddedDateTime>2024-09-19T07:35:44.704473-05:00</AddedDateTime>
    <LabTestID>1</LabTestID>
    <LabTestPrice>3</LabTestPrice>
    <LabTestTitle>sample string 2</LabTestTitle>
    <Status>true</Status>
  </GET_ALL_LAB_TESTS_Result>
  <GET_ALL_LAB_TESTS_Result>
    <AddedDateTime>2024-09-19T07:35:44.704473-05:00</AddedDateTime>
    <LabTestID>1</LabTestID>
    <LabTestPrice>3</LabTestPrice>
    <LabTestTitle>sample string 2</LabTestTitle>
    <Status>true</Status>
  </GET_ALL_LAB_TESTS_Result>
</ArrayOfGET_ALL_LAB_TESTS_Result>