Batch Upsert
Description of how to insert or update a collection of resources using our FHIR API.
Name
Value
[
{
"name": [{ "given": ["Bob"] }],
"active": true,
"resourceType": "Patient",
"id": "30405060"
},
{
"name": [{ "given": ["Charles"] }],
"active": false,
"resourceType": "Patient",
"id": "40506070"
},
{
"name": [{ "given": ["Christy"] }],
"active": false,
"resourceType": "Patient",
"id": "50607080"
}
]Last updated