Skip to main content

PatientImage API

https://fhir.netsmartcloud.com/v4/PatientImage

The CareConnect PatientImage API enables an application to retrieve a patient photo from the CareRecord.

Supported CareRecords

The PatientImage API is supported by the following Netsmart CareRecords.

  • GEHRIMED
  • Homecare
  • myAvatar
  • myEvolv
  • myUnity
  • TIER

Parameters

This API supports the following query parameters

NameTypeDescription
idstringREQUIRED The ID of the patient. This is a path parameter preceding the '/' in the PatientImage HTTP request.

Examples

Request Access Token

Client Credentials Flow with Client Secret
curl -X POST https://oauth.netsmartcloud.com/token \
-H "Accept: application/fhir+json" \
-H "Content-Type: application/x-form-urlencoded" \
-d grant_type=client_credentials \
-d client_id=YOUR_CLIENT_ID \
-d client_secret=YOUR_CLIENT_SECRET \
-d scope=CCD

Request Patient Image

Request PatientImage by Patient Id
curl -X GET 'https://fhir.netsmartcloud.com/123' \
-H "Authorization: {Bearer Token}" \
-H "Accept: */*"