POST api/Lookups/GetRadiologyType

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "09f1d612-c300-42f1-8e94-5019f75a82bd",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>09f1d612-c300-42f1-8e94-5019f75a82bd</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RadiologyTypeLookup
NameDescriptionTypeAdditional information
TypeID

globally unique identifier

None.

TypeName

string

None.

CategoryList

Collection of RadiologyCategoryLookup

None.

Response Formats

application/json, text/json

Sample:
{
  "TypeID": "a4557e2c-0280-4c16-9cf5-0954571b5947",
  "TypeName": "sample string 2",
  "CategoryList": [
    {
      "CategoryID": "1685e927-a796-4333-9d51-23c4acc360b3",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "5d806924-071b-4078-8d11-27bcae05d4cd",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "5d806924-071b-4078-8d11-27bcae05d4cd",
          "ServiceName": "sample string 2"
        }
      ]
    },
    {
      "CategoryID": "1685e927-a796-4333-9d51-23c4acc360b3",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "5d806924-071b-4078-8d11-27bcae05d4cd",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "5d806924-071b-4078-8d11-27bcae05d4cd",
          "ServiceName": "sample string 2"
        }
      ]
    }
  ]
}

application/xml, text/xml

Sample:
<RadiologyTypeLookup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <CategoryList>
    <RadiologyCategoryLookup>
      <CategoryID>1685e927-a796-4333-9d51-23c4acc360b3</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>5d806924-071b-4078-8d11-27bcae05d4cd</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>5d806924-071b-4078-8d11-27bcae05d4cd</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
    <RadiologyCategoryLookup>
      <CategoryID>1685e927-a796-4333-9d51-23c4acc360b3</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>5d806924-071b-4078-8d11-27bcae05d4cd</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>5d806924-071b-4078-8d11-27bcae05d4cd</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
  </CategoryList>
  <TypeID>a4557e2c-0280-4c16-9cf5-0954571b5947</TypeID>
  <TypeName>sample string 2</TypeName>
</RadiologyTypeLookup>