GET api/v2/{practiceId}/clinical/patients/updated?since={since}

Get information about patients which were updated since specific datetime in the past

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceId

doctor id

globally unique identifier

Required

since

datetime in UTC format, e.g. 2019-05-06T08:17:00Z

date

Required

Body Parameters

None.

Response Information

Resource Description

Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfCom.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientUpdateTrackingVo[]
NameDescriptionTypeAdditional information
Sucess

boolean

None.

ResponseCode

integer

None.

ResponseMessage

string

None.

Data

Collection of Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientUpdateTrackingVo

None.

Links

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink

None.

Response Formats

application/json, text/json

Sample:
{
  "Sucess": true,
  "ResponseCode": 2,
  "ResponseMessage": "sample string 3",
  "Data": [
    {
      "TenantId": "1e5587ed-19d3-4620-8d28-297e87c1116b",
      "PatientId": "b8dd57c2-e0ff-4dfe-b72e-d5d108fac87f",
      "LastUpdated": "2025-04-12T04:00:45Z",
      "IsClinical": true
    },
    {
      "TenantId": "1e5587ed-19d3-4620-8d28-297e87c1116b",
      "PatientId": "b8dd57c2-e0ff-4dfe-b72e-d5d108fac87f",
      "LastUpdated": "2025-04-12T04:00:45Z",
      "IsClinical": true
    }
  ],
  "Links": [
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    },
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<RestApiResultOfArrayOfPatientUpdateTrackingVoDJyeeiOY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
    <d2p1:PatientUpdateTrackingVo>
      <d2p1:IsClinical>true</d2p1:IsClinical>
      <d2p1:LastUpdated>2025-04-12T04:00:45.9384283+02:00</d2p1:LastUpdated>
      <d2p1:PatientId>b8dd57c2-e0ff-4dfe-b72e-d5d108fac87f</d2p1:PatientId>
      <d2p1:TenantId>1e5587ed-19d3-4620-8d28-297e87c1116b</d2p1:TenantId>
    </d2p1:PatientUpdateTrackingVo>
    <d2p1:PatientUpdateTrackingVo>
      <d2p1:IsClinical>true</d2p1:IsClinical>
      <d2p1:LastUpdated>2025-04-12T04:00:45.9384283+02:00</d2p1:LastUpdated>
      <d2p1:PatientId>b8dd57c2-e0ff-4dfe-b72e-d5d108fac87f</d2p1:PatientId>
      <d2p1:TenantId>1e5587ed-19d3-4620-8d28-297e87c1116b</d2p1:TenantId>
    </d2p1:PatientUpdateTrackingVo>
  </Data>
  <Links>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
  </Links>
  <ResponseCode>2</ResponseCode>
  <ResponseMessage>sample string 3</ResponseMessage>
  <Sucess>true</Sucess>
</RestApiResultOfArrayOfPatientUpdateTrackingVoDJyeeiOY>