Get a list of medication requests
get
/MedicationRequest
Search for MedicationRequest resources that meet the specified query parameters.
GET /MedicationRequest?:parameters
This operation supports the following authorization types:
- Provider
- Patient
- System
Request
Query Parameters
-
_id: string
The logical resource ID associated with the resource.
This parameter is required ifpatientis not used.
Type: token. -
_revinclude: string
A request to include any Provenance resource in the bundle that refers to a MedicationRequest resource in the search results. Only supported with Provenance.
Type: _revinclude.
The_revincludeparameter may be provided once with the valueProvenance:target. For example,_revinclude=Provenance:target.
When_revincludeis provided in a request, the OAuth2 token must include thepatient/Provenance.read system/Provenance.readoruser/Provenance.readscope as applicable. -
encounter: string
The encounter associated with the medication request.
This parameter is required if_idis not used.
Type: reference. -
intent: string
The kind of medication order. It may be a list separated by commas.
Type: token..
Theintentparameter only supports the codesorderandplan. -
patient: string
The patient who has the medication request.
This parameter is required if_idis not used.
Type: reference. -
status: string
The status of the medication request. It may be a list separated by commas.
Type: token.
Header Parameters
-
Accept(required): string
The media type to be requested. Refer to what the resource's operation produces for what is supported.
-
Authorization(required): string
Contains the credentials to authenticate a consumer to the service. This should be the OAuth2 Bearer Token.
Response
Supported Media Types
- application/fhir+json
Default Response
Search by Patient
Example Request
Example Request
GET https://fhir-myrecord-sc.sandboxcerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/MedicationRequest?patient=A879904FD2FE4B2D90C89FDA84E1285F
Example Response:
{
"resourceType": "Bundle",
"id": "cde6e0c8-cb24-4a90-ae0e-b4b3042f3638",
"type": "searchset",
"timestamp": "2022-05-11T04:42:40-04:00",
"entry": [
{
"fullUrl": "https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/MedicationRequest/A879904FD2FE4B2D90C89FDA84E1285F.17864",
"search": {
"mode": "match"
},
"resource": {
"resourceType": "MedicationRequest",
"id": "A879904FD2FE4B2D90C89FDA84E1285F.17864",
"meta": {
"lastUpdated": "2021-05-19T12:43:34-04:00"
},
"medicationReference": {
"reference": "#17864"
},
"contained": [
{
"resourceType": "Medication",
"id": "17864",
"code": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "213469",
"display": "celecoxib 200 MG Oral Capsule [Celebrex]"
},
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "205323",
"display": "celecoxib 200 MG Oral Capsule"
}
],
"text": "celecoxib"
}
}
],
"status": "active",
"intent": "plan",
"reportedBoolean": false,
"subject": {
"reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
"display": "Mcgovern,Astrid Santiago"
},
"encounter": {
"reference": "Encounter/A879904FD2FE4B2D90C89FDA84E1285F.29019",
"display": "Inferno,Initial"
},
"authoredOn": "2021-05-19T12:43:33-04:00",
"requester": {
"reference": "Practitioner/40134EF110CA4C07988F544E90057844"
},
"dosageInstruction": [
{
"text": "celecoxib (CeleBREX) 200 mg Capsule Directions: 1 capsule oral daily Continued By: Admin Admin "
}
],
"text": {
"status": "generated",
"div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>MedicationRequest</b><br /><b>Patient</b>:Mcgovern,Astrid Santiago;<br /><b>Encounter</b>:Inferno,Initial;<br /><b>Status</b>:active;<br /><b>Intent</b>:plan;<br /><b>Medication</b>:<br /><b>System</b>:http://www.nlm.nih.gov/research/umls/rxnorm <b>Code</b>:213469 <b>Display</b>:celecoxib 200 MG Oral Capsule [Celebrex] <b>Text</b>:celecoxib;<br /><b>System:http://www.nlm.nih.gov/research/umls/rxnorm <b>Code</b>:205323 <b>Display</b>:celecoxib 200 MG Oral Capsule <b>Text</b>:celecoxib;<br /><b>Authored On</b>:2021-05-19T12:43:33-04:00;<br /><b>Dosage Instructions</b>:celecoxib (CeleBREX) 200 mg Capsule Directions: 1 capsule oral daily Continued By: Admin Admin ;<br /></div>"
}
}
}
],
"link": [
{
"relation": "self",
"url": "https://fhir-myrecord-sc.sandboxcerner.com/r4/3f2aca24-87f3-4eac-a6d7-1f75247e6b43/MedicationRequest?patient=A879904FD2FE4B2D90C89FDA84E1285F"
}
]
}
x-_id Response
Search by ID
Example Request
Example Request
GET https://fhir-myrecord-sc.sandboxcerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/MedicationRequest?_id=A879904FD2FE4B2D90C89FDA84E1285F.17864
Example Response:
{
"resourceType": "Bundle",
"id": "cde6e0c8-cb24-4a90-ae0e-b4b3042f3638",
"type": "searchset",
"timestamp": "2022-05-11T04:42:40-04:00",
"entry": [
{
"fullUrl": "https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/MedicationRequest/A879904FD2FE4B2D90C89FDA84E1285F.17864",
"search": {
"mode": "match"
},
"resource": {
"resourceType": "MedicationRequest",
"id": "A879904FD2FE4B2D90C89FDA84E1285F.17864",
"meta": {
"lastUpdated": "2021-05-19T12:43:34-04:00"
},
"medicationReference": {
"reference": "#17864"
},
"contained": [
{
"resourceType": "Medication",
"id": "17864",
"code": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "213469",
"display": "celecoxib 200 MG Oral Capsule [Celebrex]"
},
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "205323",
"display": "celecoxib 200 MG Oral Capsule"
}
],
"text": "celecoxib"
}
}
],
"status": "active",
"intent": "plan",
"reportedBoolean": false,
"subject": {
"reference": "Patient/A879904FD2FE4B2D90C89FDA84E1285F",
"display": "Mcgovern,Astrid Santiago"
},
"encounter": {
"reference": "Encounter/A879904FD2FE4B2D90C89FDA84E1285F.29019",
"display": "Inferno,Initial"
},
"authoredOn": "2021-05-19T12:43:33-04:00",
"requester": {
"reference": "Practitioner/40134EF110CA4C07988F544E90057844"
},
"dosageInstruction": [
{
"text": "celecoxib (CeleBREX) 200 mg Capsule Directions: 1 capsule oral daily Continued By: Admin Admin "
}
],
"text": {
"status": "generated",
"div": "<div xmlns="http://www.w3.org/1999/xhtml"><b>MedicationRequest<br /><b>Patient</b>:Mcgovern,Astrid Santiago;<br /><b>Encounter</b>:Inferno,Initial;<br /><b>Status</b>:active;<br /><b>Intent</b>:plan;<br /><b>Medication</b>:<br /><b>System</b>:http://www.nlm.nih.gov/research/umls/rxnorm <b>Code</b>:213469 <b>Display</b>:celecoxib 200 MG Oral Capsule [Celebrex] <b>Text</b>:celecoxib;<br /><b>System:http://www.nlm.nih.gov/research/umls/rxnorm <b>Code</b>:205323 <b>Display</b<:celecoxib 200 MG Oral Capsule <b>Text</b>:celecoxib;<br /><b>Authored On</b>:2021-05-19T12:43:33-04:00;<br /><b>Dosage Instructions</b>:celecoxib (CeleBREX) 200 mg Capsule Directions: 1 capsule oral daily Continued By: Admin Admin ;<br /></div>"
}
}
}
],
"link": [
{
"relation": "self",
"url": "https://fhir-myrecord-sc.cerner.com/r4/2f8f5ec1-b7b8-4be5-ae27-e308284dd9c1/MedicationRequest?patient=A879904FD2FE4B2D90C89FDA84E1285F"
}
]
}
Headers
-
X-Request-Id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
X-Request-Id, if present. -
opc-request-id: string
Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, provide the
opc-Request-Id, if present.