Get a goal by ID

get

/Goal/{ID}

List an individual Goal Resource by its ID.

GET /Goal/:id
This operation supports the following authorization types:
  • Provider
  • Patient
  • System

Request

Path Parameters
Header Parameters
Back to Top

Response

Supported Media Types

Default Response

Example Request
GET https://fhir-myrecord-sc.cerner.com/r4/3f2aca24-87f3-4eac-a6d7-1f75247e6b43/Goal/A879904FD2FE4B2D90C89FDA84E1285F.NRS.43083
Example Response:
{
  "resourceType": "Goal",
  "id": "A879904FD2FE4B2D90C89FDA84E1285F.NRS.43083",
  "meta": {
    "lastUpdated": "2020-11-15T16:21:24-05:00"
  },
  "lifecycleStatus": "active",
  "subject": {
    "reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
    "display": "Mcgovern,Astrid Santiago"
  },
  "target": [
    {
      "dueDate": "2022-11-30"
    }
  ],
  "text": {
    "status": "generated",
    "div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>Goal</b><br /><b>Patient</b>:Mcgovern,Astrid Santiago<br /><b>Status</b>:active<br /><b>DueDate</b>:2022-11-30
<b>Description</b>:<ul><li>Goal 1: Decrease Sodium Intake</li></ul><br /></div>" }, "description": { "text": "
  • Goal 1: Decrease Sodium Intake

" } }
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