Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following are operations that can be performed and links to

  • Submit a new FHIR service request

...

API

...

GET https://{cie-hub-base-url}/FHIR/ServiceRequest/{id}

...

This will get

...

POST https://{cie-hub-base-url}/FHIR/ServiceRequest/

...

  • Get a FHIR service request by service request id

  • Change the status of a FHIR service request

Sample Object

Code Block
{
    resourceType: 'ServiceRequest',
    requisition: {
        use: 'official',
        system: 'https://mi211.org',
        value: '1234567',
    },
    status: 'active',
    intent: 'original-order',
    category: [
        {
            coding: [
                {
                    system: 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes',
                    code: 'home-visiting',
                    display: 'Home Visiting',
                },
            ],
        },
    ],
    code: {
        coding: [
            {
                system: 'https://211taxonomy.org/',
                code: 'PH-6100.3300',
                display: 'HOME BASED PARENTING EDUCATION',
            },
        ],
    },
    requester: {
        reference: 'Patient/8',
        display: 'Requester Name',
    },
    subject: {
        reference: 'Patient/8',
        display: 'Subject Name',
    },
    reasonReference: [
        {
            reference: 'Observation/2',
            type: 'Observation',
        },
        {
            reference: 'Observation/3',
            type: 'Observation',
        },
        {
            reference: 'Observation/4',
            type: 'Observation',
        },
    ],
    supportingInfo: [
        {
            reference: 'Consent/9',
            type: 'Consent',
        },
    ],
    performer: [
        {
            reference: 'HealthcareService/10',
            type: 'HealthcareService',
        },
        {
            reference: 'HealthcareService/11',
            type: 'HealthcareService',
        },
    ] };

...