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": "620b9556-a3ea-4e76-8a75-c01bf4f71bd2",
  "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>620b9556-a3ea-4e76-8a75-c01bf4f71bd2</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": "02488638-efde-4c2e-b214-8bcee8e3c91e",
  "TypeName": "sample string 2",
  "CategoryList": [
    {
      "CategoryID": "304fb865-691e-4056-a780-5f29035bdd22",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0",
          "ServiceName": "sample string 2"
        }
      ]
    },
    {
      "CategoryID": "304fb865-691e-4056-a780-5f29035bdd22",
      "CategoryName": "sample string 2",
      "ServiceList": [
        {
          "ServiceID": "76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0",
          "ServiceName": "sample string 2"
        },
        {
          "ServiceID": "76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0",
          "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>304fb865-691e-4056-a780-5f29035bdd22</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
    <RadiologyCategoryLookup>
      <CategoryID>304fb865-691e-4056-a780-5f29035bdd22</CategoryID>
      <CategoryName>sample string 2</CategoryName>
      <ServiceList>
        <RadiologyServiceLookup>
          <ServiceID>76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
        <RadiologyServiceLookup>
          <ServiceID>76a6faf3-ce60-4570-8c4c-f3e0dc1a2ae0</ServiceID>
          <ServiceName>sample string 2</ServiceName>
        </RadiologyServiceLookup>
      </ServiceList>
    </RadiologyCategoryLookup>
  </CategoryList>
  <TypeID>02488638-efde-4c2e-b214-8bcee8e3c91e</TypeID>
  <TypeName>sample string 2</TypeName>
</RadiologyTypeLookup>