GET api/SuperAdmin/GetAllLabs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GET_ALL_LABS_Result
NameDescriptionTypeAdditional information
LabID

integer

None.

LabTitle

string

None.

DisplayPicture

string

None.

DiscountPercentage

decimal number

None.

AddedDateTime

date

None.

Status

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LabID": 1,
    "LabTitle": "sample string 2",
    "DisplayPicture": "sample string 3",
    "DiscountPercentage": 4.1,
    "AddedDateTime": "2024-09-19T07:28:02.472543-05:00",
    "Status": true
  },
  {
    "LabID": 1,
    "LabTitle": "sample string 2",
    "DisplayPicture": "sample string 3",
    "DiscountPercentage": 4.1,
    "AddedDateTime": "2024-09-19T07:28:02.472543-05:00",
    "Status": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfGET_ALL_LABS_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SapiensIn.Models">
  <GET_ALL_LABS_Result>
    <AddedDateTime>2024-09-19T07:28:02.472543-05:00</AddedDateTime>
    <DiscountPercentage>4.1</DiscountPercentage>
    <DisplayPicture>sample string 3</DisplayPicture>
    <LabID>1</LabID>
    <LabTitle>sample string 2</LabTitle>
    <Status>true</Status>
  </GET_ALL_LABS_Result>
  <GET_ALL_LABS_Result>
    <AddedDateTime>2024-09-19T07:28:02.472543-05:00</AddedDateTime>
    <DiscountPercentage>4.1</DiscountPercentage>
    <DisplayPicture>sample string 3</DisplayPicture>
    <LabID>1</LabID>
    <LabTitle>sample string 2</LabTitle>
    <Status>true</Status>
  </GET_ALL_LABS_Result>
</ArrayOfGET_ALL_LABS_Result>