GP Connect - Access Record Structured

This guidance is under active development by NHS Digital and content may be added or updated on a regular basis.

Migrate examples

Request all sections of the record

The example below shows a fully populated Parameters resource as a request to the $gpc.migratestructuredrecord operation:

{
  "resourceType": "Parameters",
  "parameter": [
    {
      "name": "patientNHSNumber",
      "valueIdentifier": {
        "system": "https://fhir.nhs.uk/Id/nhs-number",
        "value": "9999999999"
      }
    },
    {
      "name": "includeFullRecord",
      "part": [
        {
          "name": "includeSensitiveInformation",
          "valueBoolean": true
        }
      ]
    }
  ]
}

back to top