POST api/Lookups/GetVital

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": "b9a38eef-9aeb-4b50-b12c-7f5c81af6461",
  "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>b9a38eef-9aeb-4b50-b12c-7f5c81af6461</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VitalLookupResponse
NameDescriptionTypeAdditional information
DataList

Collection of VitalLookup

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "DataList": [
    {
      "VitalDataTypeID": "ecee51bc-5c65-4851-b51a-7d9f41196d6e",
      "DecimalDigits": 1,
      "InputCount": 1,
      "VitalUnit1ID": "0f79afb5-f439-474a-b35d-3ec15dfbb8ed",
      "Label1": "sample string 1",
      "VitalUnit2ID": "7b98119e-d8ab-496a-9619-f413beb8dc67",
      "Label2": "sample string 2",
      "VitalUnit3ID": "1de23abf-e021-4683-921b-57b4be8ea6a5",
      "Label3": "sample string 3",
      "ID": "bec7dceb-c085-46a3-9e6e-30cf2d837ad1",
      "Name": "sample string 5"
    },
    {
      "VitalDataTypeID": "ecee51bc-5c65-4851-b51a-7d9f41196d6e",
      "DecimalDigits": 1,
      "InputCount": 1,
      "VitalUnit1ID": "0f79afb5-f439-474a-b35d-3ec15dfbb8ed",
      "Label1": "sample string 1",
      "VitalUnit2ID": "7b98119e-d8ab-496a-9619-f413beb8dc67",
      "Label2": "sample string 2",
      "VitalUnit3ID": "1de23abf-e021-4683-921b-57b4be8ea6a5",
      "Label3": "sample string 3",
      "ID": "bec7dceb-c085-46a3-9e6e-30cf2d837ad1",
      "Name": "sample string 5"
    }
  ],
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<VitalLookupResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <DataList>
    <VitalLookup>
      <ID>bec7dceb-c085-46a3-9e6e-30cf2d837ad1</ID>
      <Name>sample string 5</Name>
      <DecimalDigits>1</DecimalDigits>
      <InputCount>1</InputCount>
      <Label1>sample string 1</Label1>
      <Label2>sample string 2</Label2>
      <Label3>sample string 3</Label3>
      <VitalDataTypeID>ecee51bc-5c65-4851-b51a-7d9f41196d6e</VitalDataTypeID>
      <VitalUnit1ID>0f79afb5-f439-474a-b35d-3ec15dfbb8ed</VitalUnit1ID>
      <VitalUnit2ID>7b98119e-d8ab-496a-9619-f413beb8dc67</VitalUnit2ID>
      <VitalUnit3ID>1de23abf-e021-4683-921b-57b4be8ea6a5</VitalUnit3ID>
    </VitalLookup>
    <VitalLookup>
      <ID>bec7dceb-c085-46a3-9e6e-30cf2d837ad1</ID>
      <Name>sample string 5</Name>
      <DecimalDigits>1</DecimalDigits>
      <InputCount>1</InputCount>
      <Label1>sample string 1</Label1>
      <Label2>sample string 2</Label2>
      <Label3>sample string 3</Label3>
      <VitalDataTypeID>ecee51bc-5c65-4851-b51a-7d9f41196d6e</VitalDataTypeID>
      <VitalUnit1ID>0f79afb5-f439-474a-b35d-3ec15dfbb8ed</VitalUnit1ID>
      <VitalUnit2ID>7b98119e-d8ab-496a-9619-f413beb8dc67</VitalUnit2ID>
      <VitalUnit3ID>1de23abf-e021-4683-921b-57b4be8ea6a5</VitalUnit3ID>
    </VitalLookup>
  </DataList>
</VitalLookupResponse>