eHealth Infrastructure (v2019.5)

StructureDefinition: ehealth-practitioner - Operation examples

GET [base]/Practitioner?name=c473db44-5331-41c7-bb74-21751404d1fe

Header

Accept-Charset: utf-8
Accept: application/fhir+json;q=1.0, application/json+fhir;q=0.9
User-Agent: HAPI-FHIR/3.7.0 (FHIR Client; FHIR 3.0.1/DSTU3; apache)
Accept-Encoding: gzip

Response

{
  "resourceType": "Bundle",
  "id": "82f18d9a-409b-4f43-a074-0a243d947099",
  "meta": {
    "lastUpdated": "2019-03-11T13:28:02.732+00:00"
  },
  "type": "searchset",
  "total": 2,
  "link": [
    {
      "relation": "self",
      "url": "http://localhost:31000/hapi-fhir-server/fhir/Practitioner?_format\u003djson\u0026_pretty\u003dtrue\u0026name\u003dc473db44-5331-41c7-bb74-21751404d1fe"
    }
  ],
  "entry": [
    {
      "fullUrl": "http://localhost:31000/hapi-fhir-server/fhir/Practitioner/4348",
      "resource": {
        "resourceType": "Practitioner",
        "id": "4348",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2019-03-11T13:28:02.328+00:00",
          "profile": [
            "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"
          ]
        },
        "name": [
          {
            "family": "c473db44-5331-41c7-bb74-21751404d1fe"
          }
        ]
      },
      "search": {
        "mode": "match"
      }
    },
    {
      "fullUrl": "http://localhost:31000/hapi-fhir-server/fhir/Practitioner/4346",
      "resource": {
        "resourceType": "Practitioner",
        "id": "4346",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2019-03-11T13:28:01.719+00:00",
          "profile": [
            "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"
          ]
        },
        "name": [
          {
            "family": "c473db44-5331-41c7-bb74-21751404d1fe"
          }
        ]
      },
      "search": {
        "mode": "match"
      }
    }
  ]
}

GET [base]/Practitioner/4350/_history/2

Header

Accept-Charset: utf-8
Accept: application/fhir+json;q=1.0, application/json+fhir;q=0.9
User-Agent: HAPI-FHIR/3.7.0 (FHIR Client; FHIR 3.0.1/DSTU3; apache)
Accept-Encoding: gzip

Response

{
  "resourceType": "Practitioner",
  "id": "4350",
  "meta": {
    "versionId": "2",
    "lastUpdated": "2019-03-11T13:28:03.034+00:00",
    "profile": [
      "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"
    ]
  },
  "active": true,
  "name": [
    {
      "family": "c7b301ab-3521-47cf-95a6-3c7bb7a0adf8"
    }
  ]
}

POST [base]/Practitioner/$fetch-external-practitioners

Header

Accept-Charset: utf-8
Accept: application/fhir+json;q=1.0, application/json+fhir;q=0.9
User-Agent: HAPI-FHIR/3.7.0 (FHIR Client; FHIR 3.0.1/DSTU3; apache)
Accept-Encoding: gzip
Content-Type: application/fhir+json; charset=UTF-8

Body:

{
  "resourceType": "Parameters",
  "parameter": [
    {
      "name": "source",
      "valueCode": "foo"
    },
    {
      "name": "ids",
      "valueId": "1234"
    },
    {
      "name": "ids",
      "valueId": "5678"
    },
    {
      "name": "identifiers",
      "valueIdentifier": {
        "value": "foo1"
      }
    },
    {
      "name": "identifiers",
      "valueIdentifier": {
        "value": "foo2"
      }
    }
  ]
}

Response

{
  "resourceType": "Parameters",
  "parameter": [
    {
      "resource": {
        "resourceType": "Organization",
        "meta": {
          "profile": [
            "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-organization"
          ]
        },
        "name": "TestOrg1"
      }
    },
    {
      "resource": {
        "resourceType": "Organization",
        "meta": {
          "profile": [
            "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-organization"
          ]
        },
        "name": "TestOrg2"
      }
    }
  ]
}

PUT [base]/Practitioner/4350

Header

Accept-Charset: utf-8
If-Match: "1"
Accept: application/fhir+json;q=1.0, application/json+fhir;q=0.9
User-Agent: HAPI-FHIR/3.7.0 (FHIR Client; FHIR 3.0.1/DSTU3; apache)
Accept-Encoding: gzip
Content-Type: application/fhir+json; charset=UTF-8

Body:

{
  "resourceType": "Practitioner",
  "id": "4350",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2019-03-11T13:28:02.877+00:00",
    "profile": [
      "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"
    ]
  },
  "active": true,
  "name": [
    {
      "family": "c7b301ab-3521-47cf-95a6-3c7bb7a0adf8"
    }
  ]
}

Response

{
  "resourceType": "Practitioner",
  "id": "4350",
  "meta": {
    "versionId": "2",
    "lastUpdated": "2019-03-11T13:28:03.034+00:00",
    "profile": [
      "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"
    ]
  },
  "active": true,
  "name": [
    {
      "family": "c7b301ab-3521-47cf-95a6-3c7bb7a0adf8"
    }
  ]
}