Retrieve a specific OrganizationThis example demonstrates how to retrieve the Organization resource for a specific ID. - Generate an access token by following the OAuth 2.0 walkthrough
- The example below assumes you have been granted an access token of: aaaaa-bbbbb
- Confirm the ID of the Organization
- The example below assumes an ID of: 235a397b-1ae8-4755-9c77-1a0e2fbc5314
- Make the call as detailed below, replacing the access token and ID with your own values
- The Organization resource will be returned
Example requestThis example is written for sandbox.patientsknowbest.com; replace the URL as needed if you are connecting to a different environment.
Example | Details | Absolute URL | https://sandbox.patientsknowbest.com/fhir/Organization/235a397b-1ae8-4755-9c77-1a0e2fbc5314 | curl | curl -X GET --header "Accept: application/fhir+json" --header "Authorization: Bearer aaaaa-bbbbb" "https://sandbox.patientsknowbest.com/fhir/Organization/235a397b-1ae8-4755-9c77-1a0e2fbc5314" |
|