Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions ServiceRequest/Read ServiceRequest.bru
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
meta {
name: Read ServiceRequest
type: http
seq: 1
}

get {
url: {{base_url}}/ServiceRequest/{{servicerequest_id}}
body: none
auth: bearer
}

headers {
Content-Type: application/fhir+json
}

auth:bearer {
token: {{fhir_access_token}}
}
27 changes: 27 additions & 0 deletions ServiceRequest/Search ServiceRequest.bru
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
meta {
name: Search ServiceRequest
type: http
seq: 2
}

get {
url: {{base_url}}/ServiceRequest
body: none
auth: bearer
}

params:query {
~_id:
~authored: ge2025-09-30T19:12:25.100394+00:00
~patient: Patient/{{patient_id}}
~category: 363679005
~code: http://loinc.org|24627-2
}

headers {
Content-Type: application/fhir+json
}

auth:bearer {
token: {{fhir_access_token}}
}
12 changes: 12 additions & 0 deletions ServiceRequest/folder.bru
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
meta {
name: ServiceRequest
seq: 39
}

auth {
mode: inherit
}

auth:bearer {
token: {{fhir_access_token}}
}
3 changes: 2 additions & 1 deletion collection.bru
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ vars:pre-request {
questionnaire_id:
questionnaireresponse_id:
relatedperson_id:
schedule_id:
schedule_id:
servicerequest_id:
specimen_id:
task_id:
}
Expand Down