Log in Request access

Location

A physical place where care is delivered.

Locations back appointments and practitioner roles — exam rooms, clinic sites, and other bookable places within the organization.

Advertises a validated CA Core+ profile.

Access

Mode Interactions Scopes
App launch read + search user/Location.rs
Backend services read + search system/Location.rs

Search parameters

Search results are searchset Bundles; follow the Bundle's next link for cursor pagination.

Parameter Type Description
_id token Match a specific logical resource id.
_lastUpdated date Filter by last modification time; supports FHIR date prefixes such as ge and lt.
_count number Page size hint for the searchset Bundle.
_page_token string Opaque pagination cursor. Never construct one — follow the Bundle's next link.
name string Location name.
status token active, suspended, or inactive.
type token Kind of location.
partof reference Locations contained within another Location.

Read a location

GET /Location/{id} 200 OK
Request
curl "https://sandbox.avaemr.ca/fhir/r4/{partition_id}/Location/synthetic-location-1" \
  -H "Authorization: Bearer $SMART_ACCESS_TOKEN" \
  -H "Accept: application/fhir+json"
Response · launch context
{
  "resourceType": "Location",
  "id": "synthetic-location-1",
  "meta": {
    "profile": ["http://fhir.infoway-inforoute.ca/io/CA-Core/StructureDefinition/location-ca-core|1.1.0"]
  },
  "status": "active",
  "name": "Maplewood Clinic — Main Site",
  "managingOrganization": { "reference": "Organization/synthetic-organization-1" }
}