Get a goal by ID

get

/Goal/{ID}

Retrieves an individual goal by the associated goal ID.

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

This operation supports the following authorization types:
  • Provider
  • Patient
  • System
Example Request:
GET https://fhir-open.cerner.com/dstu2/ec2458f2-1e24-41c8-b71b-0e701af7583d/Goal/183353727
Example Response:
{
  "resourceType": "Goal",
  "id": "183353727",
  "meta": {
    "versionId": "1594062592000",
    "lastUpdated": "2020-07-06T19:09:52.000Z"
  },
  "text": {
    "status": "generated",
    "div": "<div><p><b>Goal</b></p><p><b>Subject</b>: SMART, NANCY</p><p><b>Description</b>: Walk 2 miles a day</p><p><b>Author</b>: SMART, NANCY</p><p><b>Status</b>: In Progress</p><p><b>Start Date</b>: Jul  6, 2020</p><p><b>Target Date</b>: Jul  1, 2021</p></div>"
  },
  "subject": {
    "reference": "Patient/12724066",
    "display": "SMART, NANCY"
  },
  "startDate": "2020-07-06",
  "targetDate": "2021-07-01",
  "category": [
    {
      "text": "Family"
    }
  ],
  "description": "Walk 2 miles a day",
  "status": "in-progress",
  "statusDate": "2020-07-06",
  "author": {
    "reference": "Patient/12724066",
    "display": "SMART, NANCY"
  }
}
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the X-Request-Id, if present.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the opc-Request-Id, if present.
Back to Top