v1

latestOpenAPI 3.0.0Apache 2.02026-07-246175132.0 KB
FHIR

Retrieve all resources related to a patient.

Returns a FHIR® Bundle of all resources related to the patient with paging and date filters.

get/R4/Patient/{patient_id}/$everything

Path parameters

patient_idstring required

Patient ID

Query parameters

startstring

Start date

endstring

End date

page_tokenstring

Token for next or previous page

_countinteger

Maximum number of results per page

_sincestring

Filter based on when Particle last queried the network for data (ISO 8601 date format). Returns data that was retrieved from the network after this date, based on query execution date rather than clinical documentation dates.

_typestring

Comma-delimited FHIR resource types

Response

OK

resourceTypestring

The type of the FHIR resource.

totalinteger

The total number of resources in the bundle.

typestring

The type of bundle.

Example response

{
  "entry": [
    {
      "fullUrl": "/Patient/1234",
      "search": {
        "mode": "match"
      }
    }
  ],
  "link": [
    {
      "relation": "next"
    }
  ],
  "resourceType": "Bundle",
  "total": 12,
  "type": "searchset"
}