Update Organization with identifier {identifier}

Organization on the FHIR specification website.

A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, payer/insurer, etc.

The body should be a valid FHIR object for Organization.

Here is an example:

{
  "resourceType": "Organization",
  "id": "1",
  "text": {
    "status": "generated",
    "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      \n      <p>Gastroenterology @ Acme Hospital. ph: +1 555 234 3523, email: \n        <a href=\"mailto:[email protected]\">[email protected]</a>\n      </p>\n    \n    </div>"
  },
  "identifier": [
    {
      "system": "http://www.acme.org.au/units",
      "value": "Gastro"
    }
  ],
  "name": "Gastroenterology",
  "telecom": [
    {
      "system": "phone",
      "value": "+1 555 234 3523",
      "use": "mobile"
    },
    {
      "system": "email",
      "value": "[email protected]",
      "use": "work"
    }
  ]
}

You can reference the FHIR documentation to determine the format for Organization.

Language
Authorization
Click Try It! to start a request and see the response here!