ServiceRequest

ServiceRequest

ServiceRequestIdGet

Get a ServiceRequest resource based on the resource ID.


/ServiceRequest/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//ServiceRequest/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ServiceRequestApi;

import java.io.File;
import java.util.*;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String id = id_example; // String | The ID of the ServiceRequest resource.
        try {
            ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#ServiceRequestIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ServiceRequestApi;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String id = id_example; // String | The ID of the ServiceRequest resource.
        try {
            ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#ServiceRequestIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The ID of the ServiceRequest resource.

ServiceRequestApi *apiInstance = [[ServiceRequestApi alloc] init];

[apiInstance ServiceRequestIdGetWith:id
              completionHandler: ^(ServiceRequest output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ServiceRequest = require('ServiceRequest');

var api = new ServiceRequest.ServiceRequestApi()
var id = id_example; // {{String}} The ID of the ServiceRequest resource.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.ServiceRequestIdGet(id, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class ServiceRequestIdGetExample
    {
        public void main()
        {

            var apiInstance = new ServiceRequestApi();
            var id = id_example;  // String | The ID of the ServiceRequest resource.

            try
            {
                ServiceRequest result = apiInstance.ServiceRequestIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ServiceRequestApi.ServiceRequestIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiServiceRequestApi();
$id = id_example; // String | The ID of the ServiceRequest resource.

try {
    $result = $api_instance->ServiceRequestIdGet($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ServiceRequestApi->ServiceRequestIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ServiceRequestApi;

my $api_instance = WWW::SwaggerClient::ServiceRequestApi->new();
my $id = id_example; # String | The ID of the ServiceRequest resource.

eval { 
    my $result = $api_instance->ServiceRequestIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ServiceRequestApi->ServiceRequestIdGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.ServiceRequestApi()
id = id_example # String | The ID of the ServiceRequest resource.

try: 
    api_response = api_instance.ServiceRequest_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ServiceRequestApi->ServiceRequestIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The ID of the ServiceRequest resource.
Required

Responses

Status: 200 - Successful response with ServiceRequest resource

Status: 400 - Bad request. The error was encountered when parsing the content into the appropriate FHIR resource.

Status: 401 - Unauthorized. Possible causes
  • a token failed authorization
  • a user could not be found

Status: 403 - Forbidden. Possible causes
  • a code or query parameter was not supported
  • a code may have had no valid equivalent in the EHR
  • a user does not have enough permissions to perform a certain action
  • a query was invalid, for example a search token value ended in an escape character

Status: 404 - Resource not found. Possible causes
  • an operation was not supported
  • the FHIR resource was not implemented by the product adapter
  • the FHIR resource was not found
  • the service was unable to generate the FHIR resource possibly because a required element was not provided
  • the specified patient could not be found in the EHR
  • the paging information that was sent to the product was not correct indicating that the request for the page could not be honored

Status: 405 - Method not allowed. Possible cause
  • resource does not exist

Status: 412 - Precondition failed. Possible causes
  • certain precondition checks failed, for example a version mismatch
  • an update could not be processed as the If-Match tag didn't match the version

Status: 413 - Request entity too large. Possible cause
  • a request could not be honored because it was too expensive for the server to execute, for example a search that would return a million records

Status: 422 - Unprocessable entity. Possible cause
  • an exception was thrown upon violated constraint, for example missing or invalid element for resource or if an update on a resource did not happen

Status: 429 - Too many requests. Possible causes
  • too many concurrent FHIR requests

Status: 500 - Internal server error. Possible causes
  • the system was missing configuration information, for example if a URL to a service was missing or a security group was not found for the user
  • none of the available exceptions are appropriate

servicerequestPatientIDGet

Get a ServiceRequest resource based on the Patient ID..


/ServiceRequest/[PatientID]

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//ServiceRequest/[PatientID]?patient="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ServiceRequestApi;

import java.io.File;
import java.util.*;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | The patient ID to search servicerequests for.
        try {
            inline_response_200 result = apiInstance.servicerequestPatientIDGet(patient);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#servicerequestPatientIDGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ServiceRequestApi;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | The patient ID to search servicerequests for.
        try {
            inline_response_200 result = apiInstance.servicerequestPatientIDGet(patient);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#servicerequestPatientIDGet");
            e.printStackTrace();
        }
    }
}
String *patient = patient_example; // The patient ID to search servicerequests for.

ServiceRequestApi *apiInstance = [[ServiceRequestApi alloc] init];

[apiInstance servicerequestPatientIDGetWith:patient
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ServiceRequest = require('servicerequest');

var api = new ServiceRequest.ServiceRequestApi()
var patient = patient_example; // {{String}} The patient ID to search servicerequests for.

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.servicerequestPatientIDGet(patient, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class servicerequestPatientIDGetExample
    {
        public void main()
        {

            var apiInstance = new ServiceRequestApi();
            var patient = patient_example;  // String | The patient ID to search servicerequests for.

            try
            {
                inline_response_200 result = apiInstance.servicerequestPatientIDGet(patient);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ServiceRequestApi.servicerequestPatientIDGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiServiceRequestApi();
$patient = patient_example; // String | The patient ID to search servicerequests for.

try {
    $result = $api_instance->servicerequestPatientIDGet($patient);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ServiceRequestApi->servicerequestPatientIDGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ServiceRequestApi;

my $api_instance = WWW::SwaggerClient::ServiceRequestApi->new();
my $patient = patient_example; # String | The patient ID to search servicerequests for.

eval { 
    my $result = $api_instance->servicerequestPatientIDGet(patient => $patient);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ServiceRequestApi->servicerequestPatientIDGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.ServiceRequestApi()
patient = patient_example # String | The patient ID to search servicerequests for.

try: 
    api_response = api_instance.servicerequest_patient_id_get(patient)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ServiceRequestApi->servicerequestPatientIDGet: %s\n" % e)

Parameters

Query parameters
Name Description
patient*
String
The patient ID to search servicerequests for.
Required

Responses

Status: 200 - Successful response with list of ServiceRequests

Status: 400 - Bad request. The error was encountered when parsing the content into the appropriate FHIR resource.

Status: 401 - Unauthorized. Possible causes
  • a token failed authorization
  • a user could not be found

Status: 403 - Forbidden. Possible causes
  • a code or query parameter was not supported
  • a code may have had no valid equivalent in the EHR
  • a user does not have enough permissions to perform a certain action
  • a query was invalid, for example a search token value ended in an escape character

Status: 404 - Resource not found. Possible causes
  • an operation was not supported
  • the FHIR resource was not implemented by the product adapter
  • the FHIR resource was not found
  • the service was unable to generate the FHIR resource possibly because a required element was not provided
  • the specified patient could not be found in the EHR
  • the paging information that was sent to the product was not correct indicating that the request for the page could not be honored

Status: 405 - Method not allowed. Possible cause
  • resource does not exist

Status: 412 - Precondition failed. Possible causes
  • certain precondition checks failed, for example a version mismatch
  • an update could not be processed as the If-Match tag didn't match the version

Status: 413 - Request entity too large. Possible cause
  • a request could not be honored because it was too expensive for the server to execute, for example a search that would return a million records

Status: 422 - Unprocessable entity. Possible cause
  • an exception was thrown upon violated constraint, for example missing or invalid element for resource or if an update on a resource did not happen

Status: 429 - Too many requests. Possible causes
  • too many concurrent FHIR requests

Status: 500 - Internal server error. Possible causes
  • the system was missing configuration information, for example if a URL to a service was missing or a security group was not found for the user
  • none of the available exceptions are appropriate

ServiceRequestPatientCategoryGet

Search for ServiceRequest resources based on a combination of patient ID and ServiceRequest category.


/serviceRequest/[patient]&[category]

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json,application/xml"\
"//serviceRequest/[patient]&[category]?patient=&category="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ServiceRequestApi;

import java.io.File;
import java.util.*;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | Patient identifier.
        String category = category_example; // String | ServiceRequest category.
        try {
            ServiceRequest result = apiInstance.servicerequestPatientCategoryGet(patient, category);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#servicerequestPatientCategoryGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ServiceRequestApi;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | Patient identifier.
        String category = category_example; // String | ServiceRequest category.
        try {
            ServiceRequest result = apiInstance.servicerequestPatientCategoryGet(patient, category);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#servicerequestPatientCategoryGet");
            e.printStackTrace();
        }
    }
}
String *patient = patient_example; // Patient identifier. (optional)
String *category = category_example; // ServiceRequest category. (optional)

ServiceRequestApi *apiInstance = [[ServiceRequestApi alloc] init];

[apiInstance servicerequestPatientCategoryGetWith:patient
    category:category
              completionHandler: ^(ServiceRequest output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ServiceRequest = require('serviceRequest');

var api = new ServiceRequest.ServiceRequestApi()
var opts = { 
  'patient': patient_example, // {{String}} Patient identifier.
  'category': category_example // {{String}} ServiceRequest category.
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.servicerequestPatientCategoryGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class servicerequestPatientCategoryGetExample
    {
        public void main()
        {

            var apiInstance = new ServiceRequestApi();
            var patient = patient_example;  // String | Patient identifier. (optional) 
            var category = category_example;  // String | ServiceRequest category. (optional) 

            try
            {
                ServiceRequest result = apiInstance.servicerequestPatientCategoryGet(patient, category);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ServiceRequestApi.servicerequestPatientCategoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiServiceRequestApi();
$patient = patient_example; // String | Patient identifier.
$category = category_example; // String | ServiceRequest category.

try {
    $result = $api_instance->servicerequestPatientCategoryGet($patient, $category);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ServiceRequestApi->servicerequestPatientCategoryGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ServiceRequestApi;

my $api_instance = WWW::SwaggerClient::ServiceRequestApi->new();
my $patient = patient_example; # String | Patient identifier.
my $category = category_example; # String | ServiceRequest category.

eval { 
    my $result = $api_instance->servicerequestPatientCategoryGet(patient => $patient, category => $category);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ServiceRequestApi->servicerequestPatientCategoryGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.ServiceRequestApi()
patient = patient_example # String | Patient identifier. (optional)
category = category_example # String | ServiceRequest category. (optional)

try: 
    api_response = api_instance.serviceRequest_patient_category_get(patient=patient, category=category)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ServiceRequestApi->servicerequestPatientCategoryGet: %s\n" % e)

Parameters

Query parameters
Name Description
patient
String
Patient identifier.
category
String
ServiceRequest category.

Responses

Status: 200 - Successful operation

Status: 400 - Bad request. The error was encountered when parsing the content into the appropriate FHIR resource.

Status: 401 - Unauthorized. Possible causes
  • a token failed authorization
  • a user could not be found

Status: 403 - Forbidden. Possible causes
  • a code or query parameter was not supported
  • a code may have had no valid equivalent in the EHR
  • a user does not have enough permissions to perform a certain action
  • a query was invalid, for example a search token value ended in an escape character

Status: 404 - Resource not found. Possible causes
  • an operation was not supported
  • the FHIR resource was not implemented by the product adapter
  • the FHIR resource was not found
  • the service was unable to generate the FHIR resource possibly because a required element was not provided
  • the specified patient could not be found in the EHR
  • the paging information that was sent to the product was not correct indicating that the request for the page could not be honored

Status: 405 - Method not allowed. Possible cause
  • resource does not exist

Status: 412 - Precondition failed. Possible causes
  • certain precondition checks failed, for example a version mismatch
  • an update could not be processed as the If-Match tag didn't match the version

Status: 413 - Request entity too large. Possible cause
  • a request could not be honored because it was too expensive for the server to execute, for example a search that would return a million records

Status: 422 - Unprocessable entity. Possible cause
  • an exception was thrown upon violated constraint, for example missing or invalid element for resource or if an update on a resource did not happen

Status: 429 - Too many requests. Possible causes
  • too many concurrent FHIR requests

Status: 500 - Internal server error. Possible causes
  • the system was missing configuration information, for example if a URL to a service was missing or a security group was not found for the user
  • none of the available exceptions are appropriate

serviceRequestPatientCodeGet

Search for ServiceRequest resources based on a combination of patient ID and serviceRequest code. For more information on the syntax used for searches, go to Searching.


/serviceRequest/[patient]&[code]

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json,application/xml"\
"//serviceRequest/[patient]&[code]?patient=&code="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ServiceRequestApi;

import java.io.File;
import java.util.*;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | Patient identifier.
        String code = code_example; // String | ServiceRequest code. For example, a SNOMED code.
        try {
            ServiceRequest result = apiInstance.serviceRequestPatientCodeGet(patient, code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#serviceRequestPatientCodeGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ServiceRequestApi;

public class ServiceRequestApiExample {

    public static void main(String[] args) {
        ServiceRequestApi apiInstance = new ServiceRequestApi();
        String patient = patient_example; // String | Patient identifier.
        String code = code_example; // String | ServiceRequest code. For example, a SNOMED code.
        try {
            ServiceRequest result = apiInstance.serviceRequestPatientCodeGet(patient, code);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ServiceRequestApi#serviceRequestPatientCodeGet");
            e.printStackTrace();
        }
    }
}
String *patient = patient_example; // Patient identifier. (optional)
String *code = code_example; // ServiceRequest code. For example, a SNOMED code. (optional)

ServiceRequestApi *apiInstance = [[ServiceRequestApi alloc] init];

[apiInstance serviceRequestPatientCodeGetWith:patient
    code:code
              completionHandler: ^(ServiceRequest output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var ServiceRequest = require('serviceRequest');

var api = new ServiceRequest.ServiceRequestApi()
var opts = { 
  'patient': patient_example, // {{String}} Patient identifier.
  'code': code_example // {{String}} ServiceRequest code. For example, a SNOMED code.
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.serviceRequestPatientCodeGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class serviceRequestPatientCodeGetExample
    {
        public void main()
        {

            var apiInstance = new ServiceRequestApi();
            var patient = patient_example;  // String | Patient identifier. (optional) 
            var code = code_example;  // String | ServiceRequest code. For example, a SNOMED code. (optional) 

            try
            {
                ServiceRequest result = apiInstance.serviceRequestPatientCodeGet(patient, code);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ServiceRequestApi.serviceRequestPatientCodeGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiServiceRequestApi();
$patient = patient_example; // String | Patient identifier.
$code = code_example; // String | ServiceRequest code. For example, a SNOMED code.

try {
    $result = $api_instance->serviceRequestPatientCodeGet($patient, $code);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ServiceRequestApi->serviceRequestPatientCodeGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ServiceRequestApi;

my $api_instance = WWW::SwaggerClient::ServiceRequestApi->new();
my $patient = patient_example; # String | Patient identifier.
my $code = code_example; # String | ServiceRequest code. For example, a SNOMED code.

eval { 
    my $result = $api_instance->serviceRequestPatientCodeGet(patient => $patient, code => $code);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ServiceRequestApi->serviceRequestPatientCodeGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.ServiceRequestApi()
patient = patient_example # String | Patient identifier. (optional)
code = code_example # String | ServiceRequest code. For example, a SNOMED code. (optional)

try: 
    api_response = api_instance.serviceRequest_patient_code_get(patient=patient, code=code)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ServiceRequestApi->serviceRequestPatientCodeGet: %s\n" % e)

Parameters

Query parameters
Name Description
patient
String
Patient identifier.
code
String
ServiceRequest code. For example, a SNOMED code.

Responses

Status: 200 - Successful operation

Status: 400 - Bad request. The error was encountered when parsing the content into the appropriate FHIR resource.

Status: 401 - Unauthorized. Possible causes
  • a token failed authorization
  • a user could not be found

Status: 403 - Forbidden. Possible causes
  • a code or query parameter was not supported
  • a code may have had no valid equivalent in the EHR
  • a user does not have enough permissions to perform a certain action
  • a query was invalid, for example a search token value ended in an escape character

Status: 404 - Resource not found. Possible causes
  • an operation was not supported
  • the FHIR resource was not implemented by the product adapter
  • the FHIR resource was not found
  • the service was unable to generate the FHIR resource possibly because a required element was not provided
  • the specified patient could not be found in the EHR
  • the paging information that was sent to the product was not correct indicating that the request for the page could not be honored

Status: 405 - Method not allowed. Possible cause
  • resource does not exist

Status: 412 - Precondition failed. Possible causes
  • certain precondition checks failed, for example a version mismatch
  • an update could not be processed as the If-Match tag didn't match the version

Status: 413 - Request entity too large. Possible cause
  • a request could not be honored because it was too expensive for the server to execute, for example a search that would return a million records

Status: 422 - Unprocessable entity. Possible cause
  • an exception was thrown upon violated constraint, for example missing or invalid element for resource or if an update on a resource did not happen

Status: 429 - Too many requests. Possible causes
  • too many concurrent FHIR requests

Status: 500 - Internal server error. Possible causes
  • the system was missing configuration information, for example if a URL to a service was missing or a security group was not found for the user
  • none of the available exceptions are appropriate