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": "4e845326-6220-4bcd-aecb-d9972284078c",
  "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>4e845326-6220-4bcd-aecb-d9972284078c</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": "64b907a2-dfe3-4bf8-a80f-e47345b43ee7",
  "TypeName": "sample string 2",
  "CategoryList": [
    {
      "CategoryID": "68baf66d-afb1-4bb8-b562-cecca4a9ac37",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "efa702fb-918e-4592-ab97-63c2473b556c",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "efa702fb-918e-4592-ab97-63c2473b556c",
          "ServiceName": "sample string 2"
        }
      ]
    },
    {
      "CategoryID": "68baf66d-afb1-4bb8-b562-cecca4a9ac37",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "efa702fb-918e-4592-ab97-63c2473b556c",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "efa702fb-918e-4592-ab97-63c2473b556c",
          "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>68baf66d-afb1-4bb8-b562-cecca4a9ac37</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>efa702fb-918e-4592-ab97-63c2473b556c</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>efa702fb-918e-4592-ab97-63c2473b556c</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
    <RadiologyCategoryLookup>
      <CategoryID>68baf66d-afb1-4bb8-b562-cecca4a9ac37</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>efa702fb-918e-4592-ab97-63c2473b556c</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>efa702fb-918e-4592-ab97-63c2473b556c</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
  </CategoryList>
  <TypeID>64b907a2-dfe3-4bf8-a80f-e47345b43ee7</TypeID>
  <TypeName>sample string 2</TypeName>
</RadiologyTypeLookup>