Example Request


Example cURL Request:


curl -L -X PUT 'https://api-services-demo.rochedcplatform-sandbox.com/partners/fhir/stu3/api/Bundle/AAAA123456789022' -H 'client_id: {CLIENT_ID}' -H 'client_secret: {CLIENT_SECRET}' -H 'content-type: application/json' -H 'org_id: {ORG_ID}' -H 'x-request-id: 12345678' -H 'Accept: application/json' --data-raw '{
    "resourceType": "Bundle",
    "id": "AAAA123456789022",
    "type": "message",
    "entry": [
        {
            "resource": {
                "resourceType": "MessageHeader",
                "id": "88a37162-3d7c-41c3-89ab-6e25fd68ba00",
                "meta": {
                    "profile": [
                        "http://roche.com/fhir/rdc/StructureDefinition/message-header"
                    ]
                },
                "event": {
                    "system": "http://roche.com/fhir/rdc/message-type",
                    "code": "new-bundle",
                    "display": "New bundle generated"
                },
                "timestamp": "2020-03-27T12:21:39.471Z",
                "source": {
                    "software": "EMR middleware",
                    "version": "1.0.0",
                    "endpoint": "<Organization OID>"
                }
            }
        },
        {
            "resource": {
                "resourceType": "Patient",
                "id": "AAAA123456789022",
                "meta": {
                    "profile": [
                        "http://roche.com/fhir/rdc/StructureDefinition/patient-v2"
                    ]
                },
                "identifier": [
                    {
                        "system": "urn:oid:2.16.724.4.41",
                        "value": "AAAA123456789022"
                    }
                ],
                "active": true,
                "name": [
                    {
                        "family": "PĂ©rez Fuster",
                        "given": [
                            "Manolo"
                        ]
                    }
                ],
                "telecom": [
                    {
                        "system": "phone",
                        "value": "123456789",
                        "use": "home"
                    }
                ],
                "gender": "male",
                "birthDate": "1975-06-16"
            }
        },
        {
            "resource": {
                "resourceType": "Condition",
                "id": "abdca832-a616-454b-b5c7-f1ed1fb4ght",
                "meta": {
                    "profile": [
                        "http://roche.com/fhir/rdc/StructureDefinition/condition"
                    ]
                },
                "clinicalStatus": "active",
                "code": {
                    "coding": [
                        {
                            "system": "http://snomed.info/sct",
                            "code": "46635009",
                            "display": "Diabetes mellitus type 1"
                        }
                    ]
                },
                "subject": {
                    "reference": "Patient/abdca832-a616-454b-b5c7-f1ed1fb45d4e"
                }
            }
        }
    ]
}'