GET /<resource-type>/$changes
without the version
parameter you will get latest version, which can be used to poll for changes by GET /<resource-type>/$changes?version=<version>
GET /<resourceType>/$changes
returns the latest version for the resourceType
GET /<resourceType>/<id>/$changes
returns latest version of a specific resource
Returned version value can be used with the version query-string parameterversion=<version>
returns changes since the specified version
version=<lower-version>,<upper-version>
returns changes after the lower-version
(exclusive) up to theupper-version
(inclusive)
fhir=<boolean>
if set to true
converts changes.*.resource
to the FHIR format
(note, since Changes API is not /fhir/
endpoint, the rest of the body isn't FHIR compliant).name.0.family=<string>
omit-resources=<boolean>
if set to true
omits resources leaving only id
& resourceType
fields304
, otherwise a list of changes and a new version to poll next time.