Uploading Sample Data
Aidbox endpoint for bundles will be the base URL of your Box:
/
in Aidbox REST Console and [base]
(https://<YOUR-BOX>.aidbox.app
) in any other external client (Postman for example). Alternatively, /fhir
and [base]/fhir
can be used.According to the FHIR specification, a bundle is a container for a collection of resources for transport and persistence purposes. Below is an example of a request to create two patients:
Request
Response
POST /fhir
Accept: application/json
Content-Type: application/json
{
"resourceType": "bundle",
"type": "transaction",
"entry":
[{
"request": {
"method": "POST",
"url": "/Patient"
},
"resource": {
"name": [{
"given": ["Bob"]
}
]
}
}, {
"request": {
"method": "POST",
"url": "/Patient"
},
"resource": {
"name": [{
"given": ["Peter"]
}
]
}
}
]
}
Status: 200
{
"id": "64",
"type": "transaction-response",
"resourceType": "Bundle",
"entry": [
{
"resource": {
"name": [
{
"given": [
"Bob"
]
}
],
"id": "d1f48e05-220c-4d27-9d30-22df21f1b86b",
"resourceType": "Patient",
"meta": {
"lastUpdated": "2018-10-29T12:47:45.769Z",
"versionId": "64",
"tag": [
{
"system": "https://aidbox.io",
"code": "created"
}
]
}
},
"status": 201
},
{
"resource": {
"name": [
{
"given": [
"Peter"
]
}
],
"id": "49bcfa88-9915-4832-a763-1d60cb561cc3",
"resourceType": "Patient",
"meta": {
"lastUpdated": "2018-10-29T12:47:45.769Z",
"versionId": "64",
"tag": [
{
"system": "https://aidbox.io",
"code": "created"
}
]
}
},
"status": 201
}
]
}
{
"resourceType": "bundle",
"type": "transaction",
"entry": [{
"request": {
"method": "GET",
"url": "/Patient"
}
}
]
}
Every transaction bundle MUST have the type field where value can be a transaction or batch, each element of
entry
field MUST have a method and an url fields in the request
.Bundles must be sent via POST method to BASE_URL which is the URL of your Box for external clients and
/
or /fhir
for REST Console (actually hostname exists in REST Console, but it is hidden).- 1.Access your Box in Aidbox.Cloud.
- 2.Open REST Console.
- 3.
- 4.Leave next line empty.
- 5.Paste your bundle.
- 6.Press Ctrl+Enter or click the Send button.

Bundle in Aidbox.Cloud REST Console
This is a brief description of how to work with transactions and batches in Aidbox. More interesting information coming soon, stay tuned!
git clone https://github.com/synthetichealth/synthea.git
cd synthea
./gradlew build check test
Generating the population one at a time...
./run_synthea -s 1000
ls output/fhir
...you should see few files with names similar to those:
hospitalInformation1537450368636.json
Mckinley734_Johnston597_f25b9177-3c01-4d76-a48f-0a83affa5a56.json
Make sure that you use
POST /fhir
for synthea bundles, not just POST /
Copy the content of the first file to REST Console, use
POST /fhir
to upload the FHIR transaction bundle. Everything else is the same as in the previous step. After that, upload the content of the second file into Aidbox. That's all, you are awesome!Last modified 18d ago