POST api/Lookups/LookupsChanged

Request Information

URI Parameters

None.

Body Parameters

LookupsChangedRequest
NameDescriptionTypeAdditional information
FromDate

date

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FromDate": "2025-12-11T14:39:44.6493546+03:00",
  "PatientID": "c3b7e113-7457-42dd-a6b4-9da7960c09b6",
  "WebApiVersion": 3,
  "Language": "sample string 4"
}

application/xml, text/xml

Sample:
<LookupsChangedRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 4</Language>
  <PatientID>c3b7e113-7457-42dd-a6b4-9da7960c09b6</PatientID>
  <WebApiVersion>3</WebApiVersion>
  <FromDate>2025-12-11T14:39:44.6493546+03:00</FromDate>
</LookupsChangedRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

LookupChangedResponse
NameDescriptionTypeAdditional information
LookupChanged

boolean

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "LookupChanged": true,
  "WebApiVersion": 2
}

application/xml, text/xml

Sample:
<LookupChangedResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>2</WebApiVersion>
  <LookupChanged>true</LookupChanged>
</LookupChangedResponse>