-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreate_Specimen.bru
More file actions
59 lines (55 loc) · 1.33 KB
/
Create_Specimen.bru
File metadata and controls
59 lines (55 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
meta {
name: Create a Specimen
type: http
seq: 2
}
post {
url: https://{{APIM_ENV}}.api.service.nhs.uk/patient-data-manager/FHIR/R4/Specimen
body: json
auth: inherit
}
headers {
X-Request-ID: bc3baa9e-75f6-4003-ae83-d1670aefc207
}
body:json {
{
"resourceType": "Specimen",
"id": "bab0eaec-1ec5-4598-b660-90bb38a1030d",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-Specimen"
]
},
"identifier": [
{
"system": "http://B82033-pickeringmedicalpractice.com/specimen",
"value": "SPC-REQ-20220129-000362"
}
],
"status": "available",
"type": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "122555007",
"display": "Venous blood specimen"
}
]
},
"subject": {
"reference": "urn:uuid:45d437b5-52b9-42a6-aafd-2bbe967f00d8",
"display": "WELSH, Joel",
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9727710638"
}
},
"collection": {
"collectedDateTime": "2022-01-29T10:18:00+00:00"
}
}
}
settings {
encodeUrl: true
timeout: 0
}