POST ClinicalRecord/GetALLServicesWithSearch

Request Information

URI Parameters

None.

Body Parameters

Services
NameDescriptionTypeAdditional information
serviceGroupId

integer

None.

orgID

integer

None.

searchString

string

None.

Request Formats

application/json, text/json

Sample:
{
  "serviceGroupId": 1,
  "orgID": 1,
  "searchString": "sample string 1"
}

text/html

Sample:
{"serviceGroupId":1,"orgID":1,"searchString":"sample string 1"}

application/xml, text/xml

Sample:
<Services xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tm.WebAPI.Models">
  <orgID>1</orgID>
  <searchString>sample string 1</searchString>
  <serviceGroupId>1</serviceGroupId>
</Services>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of USP_Tele_GetLaboratoryServices_Result
NameDescriptionTypeAdditional information
SERVICE_ID

integer

None.

SERVICE_NAME

string

None.

SERVICESUBGRP_NAME

string

None.

INHOUSE_SERVICE

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SERVICE_ID": 1,
    "SERVICE_NAME": "sample string 2",
    "SERVICESUBGRP_NAME": "sample string 3",
    "INHOUSE_SERVICE": 1
  },
  {
    "SERVICE_ID": 1,
    "SERVICE_NAME": "sample string 2",
    "SERVICESUBGRP_NAME": "sample string 3",
    "INHOUSE_SERVICE": 1
  }
]

text/html

Sample:
[{"SERVICE_ID":1,"SERVICE_NAME":"sample string 2","SERVICESUBGRP_NAME":"sample string 3","INHOUSE_SERVICE":1},{"SERVICE_ID":1,"SERVICE_NAME":"sample string 2","SERVICESUBGRP_NAME":"sample string 3","INHOUSE_SERVICE":1}]

application/xml, text/xml

Sample:
<ArrayOfUSP_Tele_GetLaboratoryServices_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tm.WebAPI.Models">
  <USP_Tele_GetLaboratoryServices_Result>
    <INHOUSE_SERVICE>1</INHOUSE_SERVICE>
    <SERVICESUBGRP_NAME>sample string 3</SERVICESUBGRP_NAME>
    <SERVICE_ID>1</SERVICE_ID>
    <SERVICE_NAME>sample string 2</SERVICE_NAME>
  </USP_Tele_GetLaboratoryServices_Result>
  <USP_Tele_GetLaboratoryServices_Result>
    <INHOUSE_SERVICE>1</INHOUSE_SERVICE>
    <SERVICESUBGRP_NAME>sample string 3</SERVICESUBGRP_NAME>
    <SERVICE_ID>1</SERVICE_ID>
    <SERVICE_NAME>sample string 2</SERVICE_NAME>
  </USP_Tele_GetLaboratoryServices_Result>
</ArrayOfUSP_Tele_GetLaboratoryServices_Result>