nAble FHIR Docs

API Syntax

AllergyIntolerance

allergyIntoleranceHistoryGet

type-history: Fetch the resource change history for all resources of type AllergyIntolerance


/AllergyIntolerance/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/AllergyIntolerance/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AllergyIntoleranceApi;

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

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceHistoryGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AllergyIntoleranceApi;

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceHistoryGet");
            e.printStackTrace();
        }
    }
}

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

// type-history: Fetch the resource change history for all resources of type AllergyIntolerance
[apiInstance allergyIntoleranceHistoryGetWithCompletionHandler: 
              ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new AllergyIntoleranceApi();

            try
            {
                // type-history: Fetch the resource change history for all resources of type AllergyIntolerance
                FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceHistoryGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AllergyIntoleranceApi.allergyIntoleranceHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAllergyIntoleranceApi();

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

my $api_instance = WWW::SwaggerClient::AllergyIntoleranceApi->new();

eval { 
    my $result = $api_instance->allergyIntoleranceHistoryGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AllergyIntoleranceApi->allergyIntoleranceHistoryGet: $@\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.AllergyIntoleranceApi()

try: 
    # type-history: Fetch the resource change history for all resources of type AllergyIntolerance
    api_response = api_instance.allergy_intolerance_history_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AllergyIntoleranceApi->allergyIntoleranceHistoryGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


allergyIntoleranceIdGet

read-instance: Read AllergyIntolerance instance


/AllergyIntolerance/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/AllergyIntolerance/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AllergyIntoleranceApi;

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

public class AllergyIntoleranceApiExample {

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

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// read-instance: Read AllergyIntolerance instance
[apiInstance allergyIntoleranceIdGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.AllergyIntoleranceApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new AllergyIntoleranceApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // read-instance: Read AllergyIntolerance instance
                FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AllergyIntoleranceApi.allergyIntoleranceIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAllergyIntoleranceApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::AllergyIntoleranceApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->allergyIntoleranceIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdGet: $@\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.AllergyIntoleranceApi()
id = id_example # String | The resource ID

try: 
    # read-instance: Read AllergyIntolerance instance
    api_response = api_instance.allergy_intolerance_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


allergyIntoleranceIdHistoryGet

instance-history: Fetch the resource change history for all resources of type AllergyIntolerance


/AllergyIntolerance/{id}/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/AllergyIntolerance/{id}/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AllergyIntoleranceApi;

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

public class AllergyIntoleranceApiExample {

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

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdHistoryGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceIdHistoryGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// instance-history: Fetch the resource change history for all resources of type AllergyIntolerance
[apiInstance allergyIntoleranceIdHistoryGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.AllergyIntoleranceApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new AllergyIntoleranceApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // instance-history: Fetch the resource change history for all resources of type AllergyIntolerance
                FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdHistoryGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AllergyIntoleranceApi.allergyIntoleranceIdHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAllergyIntoleranceApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::AllergyIntoleranceApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->allergyIntoleranceIdHistoryGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdHistoryGet: $@\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.AllergyIntoleranceApi()
id = id_example # String | The resource ID

try: 
    # instance-history: Fetch the resource change history for all resources of type AllergyIntolerance
    api_response = api_instance.allergy_intolerance_id_history_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdHistoryGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


allergyIntoleranceIdHistoryVersionIdGet

vread-instance: Read AllergyIntolerance instance with specific version


/AllergyIntolerance/{id}/_history/{version_id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/AllergyIntolerance/{id}/_history/{version_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AllergyIntoleranceApi;

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

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AllergyIntoleranceApi;

public class AllergyIntoleranceApiExample {

    public static void main(String[] args) {
        AllergyIntoleranceApi apiInstance = new AllergyIntoleranceApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllergyIntoleranceApi#allergyIntoleranceIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
String *versionId = versionId_example; // The resource version ID

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

// vread-instance: Read AllergyIntolerance instance with specific version
[apiInstance allergyIntoleranceIdHistoryVersionIdGetWith:id
    versionId:versionId
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.AllergyIntoleranceApi()
var id = id_example; // {{String}} The resource ID
var versionId = versionId_example; // {{String}} The resource version ID

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

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

            var apiInstance = new AllergyIntoleranceApi();
            var id = id_example;  // String | The resource ID
            var versionId = versionId_example;  // String | The resource version ID

            try
            {
                // vread-instance: Read AllergyIntolerance instance with specific version
                FHIR-JSON-RESOURCE result = apiInstance.allergyIntoleranceIdHistoryVersionIdGet(id, versionId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AllergyIntoleranceApi.allergyIntoleranceIdHistoryVersionIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiAllergyIntoleranceApi();
$id = id_example; // String | The resource ID
$versionId = versionId_example; // String | The resource version ID

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

my $api_instance = WWW::SwaggerClient::AllergyIntoleranceApi->new();
my $id = id_example; # String | The resource ID
my $versionId = versionId_example; # String | The resource version ID

eval { 
    my $result = $api_instance->allergyIntoleranceIdHistoryVersionIdGet(id => $id, versionId => $versionId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdHistoryVersionIdGet: $@\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.AllergyIntoleranceApi()
id = id_example # String | The resource ID
versionId = versionId_example # String | The resource version ID

try: 
    # vread-instance: Read AllergyIntolerance instance with specific version
    api_response = api_instance.allergy_intolerance_id_history_version_id_get(id, versionId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AllergyIntoleranceApi->allergyIntoleranceIdHistoryVersionIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
version_id*
String
The resource version ID
Required

Responses

Status: 200 - Success


CarePlan

carePlanGet

search-type: Search for CarePlan instances

This is a search type


/CarePlan

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan?date=&care-team=&subject=&_lastUpdated=&part-of=&based-on=&patient=&activity-date=&instantiates-uri=&activity-code=&identifier=&goal=&performer=&replaces=&_security=&instantiates-canonical=&encounter=&intent=&activity-reference=&_filter=&condition=&_profile=&_tag=&_has=&_source=&_id=&_text=&_content=&category=&status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        
        CarePlanApi apiInstance = new CarePlanApi();
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
          = ; //  | Who's involved in plan?
          = ; //  | Who the care plan is for
          = ; //  | When the resource version last changed
          = ; //  | Part of referenced CarePlan
          = ; //  | Fulfills CarePlan
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
          = ; //  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
          = ; //  | Instantiates external protocol or definition
          = ; //  | Detail type of activity
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
          = ; //  | Desired outcome of plan
          = ; //  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)
          = ; //  | CarePlan replaced by this CarePlan
          = ; //  | Security Labels applied to this resource
          = ; //  | Instantiates FHIR protocol or definition
          = ; //  | Encounter created as part of
          = ; //  | proposal | plan | order | option
          = ; //  | Activity details defined in specific resource
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Health issues this plan addresses
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Tags applied to this resource
          = ; //  | Return resources linked to by the given target
          = ; //  | Identifies where the resource comes from
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | Type of plan
          = ; //  | draft | active | on-hold | revoked | completed | entered-in-error | unknown
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CarePlanApi;

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
          = ; //  | Who's involved in plan?
          = ; //  | Who the care plan is for
          = ; //  | When the resource version last changed
          = ; //  | Part of referenced CarePlan
          = ; //  | Fulfills CarePlan
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
          = ; //  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
          = ; //  | Instantiates external protocol or definition
          = ; //  | Detail type of activity
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
          = ; //  | Desired outcome of plan
          = ; //  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)
          = ; //  | CarePlan replaced by this CarePlan
          = ; //  | Security Labels applied to this resource
          = ; //  | Instantiates FHIR protocol or definition
          = ; //  | Encounter created as part of
          = ; //  | proposal | plan | order | option
          = ; //  | Activity details defined in specific resource
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Health issues this plan addresses
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Tags applied to this resource
          = ; //  | Return resources linked to by the given target
          = ; //  | Identifies where the resource comes from
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | Type of plan
          = ; //  | draft | active | on-hold | revoked | completed | entered-in-error | unknown
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanGet");
            e.printStackTrace();
        }
    }
}
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made (optional)
 * = ; // Who's involved in plan? (optional)
 * = ; // Who the care plan is for (optional)
 * = ; // When the resource version last changed (optional)
 * = ; // Part of referenced CarePlan (optional)
 * = ; // Fulfills CarePlan (optional)
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional)
 * = ; // Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x] (optional)
 * = ; // Instantiates external protocol or definition (optional)
 * = ; // Detail type of activity (optional)
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional)
 * = ; // Desired outcome of plan (optional)
 * = ; // Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.) (optional)
 * = ; // CarePlan replaced by this CarePlan (optional)
 * = ; // Security Labels applied to this resource (optional)
 * = ; // Instantiates FHIR protocol or definition (optional)
 * = ; // Encounter created as part of (optional)
 * = ; // proposal | plan | order | option (optional)
 * = ; // Activity details defined in specific resource (optional)
 * = ; // Search the contents of the resource's data using a filter (optional)
 * = ; // Health issues this plan addresses (optional)
 * = ; // Profiles this resource claims to conform to (optional)
 * = ; // Tags applied to this resource (optional)
 * = ; // Return resources linked to by the given target (optional)
 * = ; // Identifies where the resource comes from (optional)
 * = ; // Logical id of this artifact (optional)
 * = ; // Search on the narrative of the resource (optional)
 * = ; // Search on the entire content of the resource (optional)
 * = ; // Type of plan (optional)
 * = ; // draft | active | on-hold | revoked | completed | entered-in-error | unknown (optional)

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

// search-type: Search for CarePlan instances
[apiInstance carePlanGetWith:
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CarePlanApi()
var opts = { 
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
  '': , // {{}} Who's involved in plan?
  '': , // {{}} Who the care plan is for
  '': , // {{}} When the resource version last changed
  '': , // {{}} Part of referenced CarePlan
  '': , // {{}} Fulfills CarePlan
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
  '': , // {{}} Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
  '': , // {{}} Instantiates external protocol or definition
  '': , // {{}} Detail type of activity
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
  '': , // {{}} Desired outcome of plan
  '': , // {{}} Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)
  '': , // {{}} CarePlan replaced by this CarePlan
  '': , // {{}} Security Labels applied to this resource
  '': , // {{}} Instantiates FHIR protocol or definition
  '': , // {{}} Encounter created as part of
  '': , // {{}} proposal | plan | order | option
  '': , // {{}} Activity details defined in specific resource
  '': , // {{}} Search the contents of the resource's data using a filter
  '': , // {{}} Health issues this plan addresses
  '': , // {{}} Profiles this resource claims to conform to
  '': , // {{}} Tags applied to this resource
  '': , // {{}} Return resources linked to by the given target
  '': , // {{}} Identifies where the resource comes from
  '': , // {{}} Logical id of this artifact
  '': , // {{}} Search on the narrative of the resource
  '': , // {{}} Search on the entire content of the resource
  '': , // {{}} Type of plan
  '':  // {{}} draft | active | on-hold | revoked | completed | entered-in-error | unknown
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.carePlanGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new CarePlanApi();
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made (optional) 
            var  = new (); //  | Who's involved in plan? (optional) 
            var  = new (); //  | Who the care plan is for (optional) 
            var  = new (); //  | When the resource version last changed (optional) 
            var  = new (); //  | Part of referenced CarePlan (optional) 
            var  = new (); //  | Fulfills CarePlan (optional) 
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional) 
            var  = new (); //  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x] (optional) 
            var  = new (); //  | Instantiates external protocol or definition (optional) 
            var  = new (); //  | Detail type of activity (optional) 
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional) 
            var  = new (); //  | Desired outcome of plan (optional) 
            var  = new (); //  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.) (optional) 
            var  = new (); //  | CarePlan replaced by this CarePlan (optional) 
            var  = new (); //  | Security Labels applied to this resource (optional) 
            var  = new (); //  | Instantiates FHIR protocol or definition (optional) 
            var  = new (); //  | Encounter created as part of (optional) 
            var  = new (); //  | proposal | plan | order | option (optional) 
            var  = new (); //  | Activity details defined in specific resource (optional) 
            var  = new (); //  | Search the contents of the resource's data using a filter (optional) 
            var  = new (); //  | Health issues this plan addresses (optional) 
            var  = new (); //  | Profiles this resource claims to conform to (optional) 
            var  = new (); //  | Tags applied to this resource (optional) 
            var  = new (); //  | Return resources linked to by the given target (optional) 
            var  = new (); //  | Identifies where the resource comes from (optional) 
            var  = new (); //  | Logical id of this artifact (optional) 
            var  = new (); //  | Search on the narrative of the resource (optional) 
            var  = new (); //  | Search on the entire content of the resource (optional) 
            var  = new (); //  | Type of plan (optional) 
            var  = new (); //  | draft | active | on-hold | revoked | completed | entered-in-error | unknown (optional) 

            try
            {
                // search-type: Search for CarePlan instances
                FHIR-JSON-RESOURCE result = apiInstance.carePlanGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
$ = ; //  | Who's involved in plan?
$ = ; //  | Who the care plan is for
$ = ; //  | When the resource version last changed
$ = ; //  | Part of referenced CarePlan
$ = ; //  | Fulfills CarePlan
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
$ = ; //  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
$ = ; //  | Instantiates external protocol or definition
$ = ; //  | Detail type of activity
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
$ = ; //  | Desired outcome of plan
$ = ; //  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)
$ = ; //  | CarePlan replaced by this CarePlan
$ = ; //  | Security Labels applied to this resource
$ = ; //  | Instantiates FHIR protocol or definition
$ = ; //  | Encounter created as part of
$ = ; //  | proposal | plan | order | option
$ = ; //  | Activity details defined in specific resource
$ = ; //  | Search the contents of the resource's data using a filter
$ = ; //  | Health issues this plan addresses
$ = ; //  | Profiles this resource claims to conform to
$ = ; //  | Tags applied to this resource
$ = ; //  | Return resources linked to by the given target
$ = ; //  | Identifies where the resource comes from
$ = ; //  | Logical id of this artifact
$ = ; //  | Search on the narrative of the resource
$ = ; //  | Search on the entire content of the resource
$ = ; //  | Type of plan
$ = ; //  | draft | active | on-hold | revoked | completed | entered-in-error | unknown

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
my $ = ; #  | Who's involved in plan?
my $ = ; #  | Who the care plan is for
my $ = ; #  | When the resource version last changed
my $ = ; #  | Part of referenced CarePlan
my $ = ; #  | Fulfills CarePlan
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
my $ = ; #  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
my $ = ; #  | Instantiates external protocol or definition
my $ = ; #  | Detail type of activity
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
my $ = ; #  | Desired outcome of plan
my $ = ; #  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.)
my $ = ; #  | CarePlan replaced by this CarePlan
my $ = ; #  | Security Labels applied to this resource
my $ = ; #  | Instantiates FHIR protocol or definition
my $ = ; #  | Encounter created as part of
my $ = ; #  | proposal | plan | order | option
my $ = ; #  | Activity details defined in specific resource
my $ = ; #  | Search the contents of the resource's data using a filter
my $ = ; #  | Health issues this plan addresses
my $ = ; #  | Profiles this resource claims to conform to
my $ = ; #  | Tags applied to this resource
my $ = ; #  | Return resources linked to by the given target
my $ = ; #  | Identifies where the resource comes from
my $ = ; #  | Logical id of this artifact
my $ = ; #  | Search on the narrative of the resource
my $ = ; #  | Search on the entire content of the resource
my $ = ; #  | Type of plan
my $ = ; #  | draft | active | on-hold | revoked | completed | entered-in-error | unknown

eval { 
    my $result = $api_instance->carePlanGet( => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanGet: $@\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.CarePlanApi()
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made (optional)
 =  #  | Who's involved in plan? (optional)
 =  #  | Who the care plan is for (optional)
 =  #  | When the resource version last changed (optional)
 =  #  | Part of referenced CarePlan (optional)
 =  #  | Fulfills CarePlan (optional)
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional)
 =  #  | Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x] (optional)
 =  #  | Instantiates external protocol or definition (optional)
 =  #  | Detail type of activity (optional)
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional)
 =  #  | Desired outcome of plan (optional)
 =  #  | Matches if the practitioner is listed as a performer in any of the "simple" activities.  (For performers of the detailed activities, chain through the activitydetail search parameter.) (optional)
 =  #  | CarePlan replaced by this CarePlan (optional)
 =  #  | Security Labels applied to this resource (optional)
 =  #  | Instantiates FHIR protocol or definition (optional)
 =  #  | Encounter created as part of (optional)
 =  #  | proposal | plan | order | option (optional)
 =  #  | Activity details defined in specific resource (optional)
 =  #  | Search the contents of the resource's data using a filter (optional)
 =  #  | Health issues this plan addresses (optional)
 =  #  | Profiles this resource claims to conform to (optional)
 =  #  | Tags applied to this resource (optional)
 =  #  | Return resources linked to by the given target (optional)
 =  #  | Identifies where the resource comes from (optional)
 =  #  | Logical id of this artifact (optional)
 =  #  | Search on the narrative of the resource (optional)
 =  #  | Search on the entire content of the resource (optional)
 =  #  | Type of plan (optional)
 =  #  | draft | active | on-hold | revoked | completed | entered-in-error | unknown (optional)

try: 
    # search-type: Search for CarePlan instances
    api_response = api_instance.care_plan_get(=, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanGet: %s\n" % e)

Parameters

Query parameters
Name Description
date
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded * [CarePlan](careplan.html): Time period plan covers * [CareTeam](careteam.html): Time period team covers * [ClinicalImpression](clinicalimpression.html): When the assessment was documented * [Composition](composition.html): Composition editing time * [Consent](consent.html): When this Consent was created or indexed * [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report * [Encounter](encounter.html): A date within the period the Encounter lasted * [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period * [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated * [Flag](flag.html): Time period when flag is active * [Immunization](immunization.html): Vaccination (non)-Administration Date * [List](list.html): When the list was prepared * [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period * [Procedure](procedure.html): When the procedure was performed * [RiskAssessment](riskassessment.html): When was assessment made? * [SupplyRequest](supplyrequest.html): When the request was made
care-team
Who's involved in plan?
subject
Who the care plan is for
_lastUpdated
When the resource version last changed
part-of
Part of referenced CarePlan
based-on
Fulfills CarePlan
patient
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for * [CarePlan](careplan.html): Who the care plan is for * [CareTeam](careteam.html): Who care team is for * [ClinicalImpression](clinicalimpression.html): Patient or group assessed * [Composition](composition.html): Who and/or what the composition is about * [Condition](condition.html): Who has the condition? * [Consent](consent.html): Who the consent applies to * [DetectedIssue](detectedissue.html): Associated patient * [DeviceRequest](devicerequest.html): Individual the service is ordered for * [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient * [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient * [DocumentManifest](documentmanifest.html): The subject of the set of documents * [DocumentReference](documentreference.html): Who/what is the subject of the document * [Encounter](encounter.html): The patient or group present at the encounter * [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care * [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for * [Flag](flag.html): The identity of a subject to list flags for * [Goal](goal.html): Who this goal is intended for * [ImagingStudy](imagingstudy.html): Who the study is about * [Immunization](immunization.html): The patient for the vaccination record * [List](list.html): If all resources have the same subject * [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for * [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for * [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient * [MedicationStatement](medicationstatement.html): Returns statements for a specific patient. * [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement * [Observation](observation.html): The subject that the observation is about (if patient) * [Procedure](procedure.html): Search by subject - a patient * [RiskAssessment](riskassessment.html): Who/what does assessment apply to? * [ServiceRequest](servicerequest.html): Search by subject - a patient * [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied * [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
activity-date
Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]
instantiates-uri
Instantiates external protocol or definition
activity-code
Detail type of activity
identifier
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): External ids for this item * [CarePlan](careplan.html): External Ids for this plan * [CareTeam](careteam.html): External Ids for this team * [Composition](composition.html): Version-independent identifier for the Composition * [Condition](condition.html): A unique identifier of the condition record * [Consent](consent.html): Identifier for this record (external references) * [DetectedIssue](detectedissue.html): Unique id for the detected issue * [DeviceRequest](devicerequest.html): Business identifier for request/order * [DiagnosticReport](diagnosticreport.html): An identifier for the report * [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents * [DocumentReference](documentreference.html): Master Version Specific Identifier * [Encounter](encounter.html): Identifier(s) by which this encounter is known * [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare * [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier * [Goal](goal.html): External Ids for this goal * [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number * [Immunization](immunization.html): Business identifier * [List](list.html): Business identifier * [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier * [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier * [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier * [MedicationStatement](medicationstatement.html): Return statements with this external identifier * [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier * [Observation](observation.html): The unique id for a particular observation * [Procedure](procedure.html): A unique identifier for a procedure * [RiskAssessment](riskassessment.html): Unique identifier for the assessment * [ServiceRequest](servicerequest.html): Identifiers assigned to this order * [SupplyDelivery](supplydelivery.html): External identifier * [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest * [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
goal
Desired outcome of plan
performer
Matches if the practitioner is listed as a performer in any of the "simple" activities. (For performers of the detailed activities, chain through the activitydetail search parameter.)
replaces
CarePlan replaced by this CarePlan
_security
Security Labels applied to this resource
instantiates-canonical
Instantiates FHIR protocol or definition
encounter
Encounter created as part of
intent
proposal | plan | order | option
activity-reference
Activity details defined in specific resource
_filter
Search the contents of the resource's data using a filter
condition
Health issues this plan addresses
_profile
Profiles this resource claims to conform to
_tag
Tags applied to this resource
_has
Return resources linked to by the given target
_source
Identifies where the resource comes from
_id
Logical id of this artifact
_text
Search on the narrative of the resource
_content
Search on the entire content of the resource
category
Type of plan
status
draft | active | on-hold | revoked | completed | entered-in-error | unknown

Responses

Status: 200 - Success


carePlanHistoryGet

type-history: Fetch the resource change history for all resources of type CarePlan


/CarePlan/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        
        CarePlanApi apiInstance = new CarePlanApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanHistoryGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CarePlanApi;

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanHistoryGet");
            e.printStackTrace();
        }
    }
}

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

// type-history: Fetch the resource change history for all resources of type CarePlan
[apiInstance carePlanHistoryGetWithCompletionHandler: 
              ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new CarePlanApi();

            try
            {
                // type-history: Fetch the resource change history for all resources of type CarePlan
                FHIR-JSON-RESOURCE result = apiInstance.carePlanHistoryGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();

eval { 
    my $result = $api_instance->carePlanHistoryGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanHistoryGet: $@\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.CarePlanApi()

try: 
    # type-history: Fetch the resource change history for all resources of type CarePlan
    api_response = api_instance.care_plan_history_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanHistoryGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


carePlanIdGet

read-instance: Read CarePlan instance


/CarePlan/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// read-instance: Read CarePlan instance
[apiInstance carePlanIdGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CarePlanApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new CarePlanApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // read-instance: Read CarePlan instance
                FHIR-JSON-RESOURCE result = apiInstance.carePlanIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->carePlanIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanIdGet: $@\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.CarePlanApi()
id = id_example # String | The resource ID

try: 
    # read-instance: Read CarePlan instance
    api_response = api_instance.care_plan_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


carePlanIdHistoryGet

instance-history: Fetch the resource change history for all resources of type CarePlan


/CarePlan/{id}/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan/{id}/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanIdHistoryGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanIdHistoryGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// instance-history: Fetch the resource change history for all resources of type CarePlan
[apiInstance carePlanIdHistoryGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CarePlanApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new CarePlanApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // instance-history: Fetch the resource change history for all resources of type CarePlan
                FHIR-JSON-RESOURCE result = apiInstance.carePlanIdHistoryGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanIdHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->carePlanIdHistoryGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanIdHistoryGet: $@\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.CarePlanApi()
id = id_example # String | The resource ID

try: 
    # instance-history: Fetch the resource change history for all resources of type CarePlan
    api_response = api_instance.care_plan_id_history_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanIdHistoryGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


carePlanIdHistoryVersionIdGet

vread-instance: Read CarePlan instance with specific version


/CarePlan/{id}/_history/{version_id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan/{id}/_history/{version_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        
        CarePlanApi apiInstance = new CarePlanApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CarePlanApi;

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
String *versionId = versionId_example; // The resource version ID

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

// vread-instance: Read CarePlan instance with specific version
[apiInstance carePlanIdHistoryVersionIdGetWith:id
    versionId:versionId
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CarePlanApi()
var id = id_example; // {{String}} The resource ID
var versionId = versionId_example; // {{String}} The resource version ID

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

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

            var apiInstance = new CarePlanApi();
            var id = id_example;  // String | The resource ID
            var versionId = versionId_example;  // String | The resource version ID

            try
            {
                // vread-instance: Read CarePlan instance with specific version
                FHIR-JSON-RESOURCE result = apiInstance.carePlanIdHistoryVersionIdGet(id, versionId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanIdHistoryVersionIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();
$id = id_example; // String | The resource ID
$versionId = versionId_example; // String | The resource version ID

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();
my $id = id_example; # String | The resource ID
my $versionId = versionId_example; # String | The resource version ID

eval { 
    my $result = $api_instance->carePlanIdHistoryVersionIdGet(id => $id, versionId => $versionId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanIdHistoryVersionIdGet: $@\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.CarePlanApi()
id = id_example # String | The resource ID
versionId = versionId_example # String | The resource version ID

try: 
    # vread-instance: Read CarePlan instance with specific version
    api_response = api_instance.care_plan_id_history_version_id_get(id, versionId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanIdHistoryVersionIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
version_id*
String
The resource version ID
Required

Responses

Status: 200 - Success


carePlanPost

create-type: Create a new CarePlan instance


/CarePlan

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CarePlan"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CarePlanApi;

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

public class CarePlanApiExample {

    public static void main(String[] args) {
        
        CarePlanApi apiInstance = new CarePlanApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"CarePlan\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanPost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CarePlanApi;

public class CarePlanApiExample {

    public static void main(String[] args) {
        CarePlanApi apiInstance = new CarePlanApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"CarePlan\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.carePlanPost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CarePlanApi#carePlanPost");
            e.printStackTrace();
        }
    }
}
FHIR-JSON-RESOURCE *body = "{\n  \"resourceType\": \"CarePlan\"\n}"; //  (optional)

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

// create-type: Create a new CarePlan instance
[apiInstance carePlanPostWith:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CarePlanApi()
var opts = { 
  'body': "{\n  \"resourceType\": \"CarePlan\"\n}" // {{FHIR-JSON-RESOURCE}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.carePlanPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new CarePlanApi();
            var body = new FHIR-JSON-RESOURCE(); // FHIR-JSON-RESOURCE |  (optional) 

            try
            {
                // create-type: Create a new CarePlan instance
                FHIR-JSON-RESOURCE result = apiInstance.carePlanPost(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CarePlanApi.carePlanPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCarePlanApi();
$body = "{\n  \"resourceType\": \"CarePlan\"\n}"; // FHIR-JSON-RESOURCE | 

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

my $api_instance = WWW::SwaggerClient::CarePlanApi->new();
my $body = WWW::SwaggerClient::Object::FHIR-JSON-RESOURCE->new(); # FHIR-JSON-RESOURCE | 

eval { 
    my $result = $api_instance->carePlanPost(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CarePlanApi->carePlanPost: $@\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.CarePlanApi()
body = "{\n  \"resourceType\": \"CarePlan\"\n}" # FHIR-JSON-RESOURCE |  (optional)

try: 
    # create-type: Create a new CarePlan instance
    api_response = api_instance.care_plan_post(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CarePlanApi->carePlanPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


CareTeam

careTeamIdGet

read-instance: Read CareTeam instance


/CareTeam/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/CareTeam/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CareTeamApi;

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

public class CareTeamApiExample {

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

public class CareTeamApiExample {

    public static void main(String[] args) {
        CareTeamApi apiInstance = new CareTeamApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.careTeamIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CareTeamApi#careTeamIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// read-instance: Read CareTeam instance
[apiInstance careTeamIdGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.CareTeamApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new CareTeamApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // read-instance: Read CareTeam instance
                FHIR-JSON-RESOURCE result = apiInstance.careTeamIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling CareTeamApi.careTeamIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiCareTeamApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::CareTeamApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->careTeamIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CareTeamApi->careTeamIdGet: $@\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.CareTeamApi()
id = id_example # String | The resource ID

try: 
    # read-instance: Read CareTeam instance
    api_response = api_instance.care_team_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CareTeamApi->careTeamIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


Condition

conditionGet

search-type: Search for Condition instances

This is a search type


/Condition

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition?onset-info=&code=&evidence=&subject=&_lastUpdated=&verification-status=&clinical-status=&onset-date=&abatement-date=&patient=&abatement-age=&evidence-detail=&severity=&identifier=&recorded-date=&_security=&encounter=&_filter=&asserter=&_profile=&stage=&abatement-string=&_tag=&_has=&onset-age=&_source=&_id=&_text=&_content=&body-site=&category="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | Onsets as a string
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
          = ; //  | Manifestation/symptom
          = ; //  | Who has the condition?
          = ; //  | When the resource version last changed
          = ; //  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
          = ; //  | The clinical status of the condition
          = ; //  | Date related onsets (dateTime and Period)
          = ; //  | Date-related abatements (dateTime and period)
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
          = ; //  | Abatement as age or age range
          = ; //  | Supporting information found elsewhere
          = ; //  | The severity of the condition
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
          = ; //  | Date record was first recorded
          = ; //  | Security Labels applied to this resource
          = ; //  | Encounter created as part of
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Person who asserts this condition
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Simple summary (disease specific)
          = ; //  | Abatement as a string
          = ; //  | Tags applied to this resource
          = ; //  | Return resources linked to by the given target
          = ; //  | Onsets as age or age range
          = ; //  | Identifies where the resource comes from
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | Anatomical location, if relevant
          = ; //  | The category of the condition
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | Onsets as a string
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
          = ; //  | Manifestation/symptom
          = ; //  | Who has the condition?
          = ; //  | When the resource version last changed
          = ; //  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
          = ; //  | The clinical status of the condition
          = ; //  | Date related onsets (dateTime and Period)
          = ; //  | Date-related abatements (dateTime and period)
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
          = ; //  | Abatement as age or age range
          = ; //  | Supporting information found elsewhere
          = ; //  | The severity of the condition
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
          = ; //  | Date record was first recorded
          = ; //  | Security Labels applied to this resource
          = ; //  | Encounter created as part of
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Person who asserts this condition
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Simple summary (disease specific)
          = ; //  | Abatement as a string
          = ; //  | Tags applied to this resource
          = ; //  | Return resources linked to by the given target
          = ; //  | Onsets as age or age range
          = ; //  | Identifies where the resource comes from
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | Anatomical location, if relevant
          = ; //  | The category of the condition
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionGet");
            e.printStackTrace();
        }
    }
}
 * = ; // Onsets as a string (optional)
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered (optional)
 * = ; // Manifestation/symptom (optional)
 * = ; // Who has the condition? (optional)
 * = ; // When the resource version last changed (optional)
 * = ; // unconfirmed | provisional | differential | confirmed | refuted | entered-in-error (optional)
 * = ; // The clinical status of the condition (optional)
 * = ; // Date related onsets (dateTime and Period) (optional)
 * = ; // Date-related abatements (dateTime and period) (optional)
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional)
 * = ; // Abatement as age or age range (optional)
 * = ; // Supporting information found elsewhere (optional)
 * = ; // The severity of the condition (optional)
 * = ; // Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional)
 * = ; // Date record was first recorded (optional)
 * = ; // Security Labels applied to this resource (optional)
 * = ; // Encounter created as part of (optional)
 * = ; // Search the contents of the resource's data using a filter (optional)
 * = ; // Person who asserts this condition (optional)
 * = ; // Profiles this resource claims to conform to (optional)
 * = ; // Simple summary (disease specific) (optional)
 * = ; // Abatement as a string (optional)
 * = ; // Tags applied to this resource (optional)
 * = ; // Return resources linked to by the given target (optional)
 * = ; // Onsets as age or age range (optional)
 * = ; // Identifies where the resource comes from (optional)
 * = ; // Logical id of this artifact (optional)
 * = ; // Search on the narrative of the resource (optional)
 * = ; // Search on the entire content of the resource (optional)
 * = ; // Anatomical location, if relevant (optional)
 * = ; // The category of the condition (optional)

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

// search-type: Search for Condition instances
[apiInstance conditionGetWith:
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var opts = { 
  '': , // {{}} Onsets as a string
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
  '': , // {{}} Manifestation/symptom
  '': , // {{}} Who has the condition?
  '': , // {{}} When the resource version last changed
  '': , // {{}} unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
  '': , // {{}} The clinical status of the condition
  '': , // {{}} Date related onsets (dateTime and Period)
  '': , // {{}} Date-related abatements (dateTime and period)
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
  '': , // {{}} Abatement as age or age range
  '': , // {{}} Supporting information found elsewhere
  '': , // {{}} The severity of the condition
  '': , // {{}} Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
  '': , // {{}} Date record was first recorded
  '': , // {{}} Security Labels applied to this resource
  '': , // {{}} Encounter created as part of
  '': , // {{}} Search the contents of the resource's data using a filter
  '': , // {{}} Person who asserts this condition
  '': , // {{}} Profiles this resource claims to conform to
  '': , // {{}} Simple summary (disease specific)
  '': , // {{}} Abatement as a string
  '': , // {{}} Tags applied to this resource
  '': , // {{}} Return resources linked to by the given target
  '': , // {{}} Onsets as age or age range
  '': , // {{}} Identifies where the resource comes from
  '': , // {{}} Logical id of this artifact
  '': , // {{}} Search on the narrative of the resource
  '': , // {{}} Search on the entire content of the resource
  '': , // {{}} Anatomical location, if relevant
  '':  // {{}} The category of the condition
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var  = new (); //  | Onsets as a string (optional) 
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered (optional) 
            var  = new (); //  | Manifestation/symptom (optional) 
            var  = new (); //  | Who has the condition? (optional) 
            var  = new (); //  | When the resource version last changed (optional) 
            var  = new (); //  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error (optional) 
            var  = new (); //  | The clinical status of the condition (optional) 
            var  = new (); //  | Date related onsets (dateTime and Period) (optional) 
            var  = new (); //  | Date-related abatements (dateTime and period) (optional) 
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional) 
            var  = new (); //  | Abatement as age or age range (optional) 
            var  = new (); //  | Supporting information found elsewhere (optional) 
            var  = new (); //  | The severity of the condition (optional) 
            var  = new (); //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional) 
            var  = new (); //  | Date record was first recorded (optional) 
            var  = new (); //  | Security Labels applied to this resource (optional) 
            var  = new (); //  | Encounter created as part of (optional) 
            var  = new (); //  | Search the contents of the resource's data using a filter (optional) 
            var  = new (); //  | Person who asserts this condition (optional) 
            var  = new (); //  | Profiles this resource claims to conform to (optional) 
            var  = new (); //  | Simple summary (disease specific) (optional) 
            var  = new (); //  | Abatement as a string (optional) 
            var  = new (); //  | Tags applied to this resource (optional) 
            var  = new (); //  | Return resources linked to by the given target (optional) 
            var  = new (); //  | Onsets as age or age range (optional) 
            var  = new (); //  | Identifies where the resource comes from (optional) 
            var  = new (); //  | Logical id of this artifact (optional) 
            var  = new (); //  | Search on the narrative of the resource (optional) 
            var  = new (); //  | Search on the entire content of the resource (optional) 
            var  = new (); //  | Anatomical location, if relevant (optional) 
            var  = new (); //  | The category of the condition (optional) 

            try
            {
                // search-type: Search for Condition instances
                FHIR-JSON-RESOURCE result = apiInstance.conditionGet(, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$ = ; //  | Onsets as a string
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
$ = ; //  | Manifestation/symptom
$ = ; //  | Who has the condition?
$ = ; //  | When the resource version last changed
$ = ; //  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
$ = ; //  | The clinical status of the condition
$ = ; //  | Date related onsets (dateTime and Period)
$ = ; //  | Date-related abatements (dateTime and period)
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
$ = ; //  | Abatement as age or age range
$ = ; //  | Supporting information found elsewhere
$ = ; //  | The severity of the condition
$ = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
$ = ; //  | Date record was first recorded
$ = ; //  | Security Labels applied to this resource
$ = ; //  | Encounter created as part of
$ = ; //  | Search the contents of the resource's data using a filter
$ = ; //  | Person who asserts this condition
$ = ; //  | Profiles this resource claims to conform to
$ = ; //  | Simple summary (disease specific)
$ = ; //  | Abatement as a string
$ = ; //  | Tags applied to this resource
$ = ; //  | Return resources linked to by the given target
$ = ; //  | Onsets as age or age range
$ = ; //  | Identifies where the resource comes from
$ = ; //  | Logical id of this artifact
$ = ; //  | Search on the narrative of the resource
$ = ; //  | Search on the entire content of the resource
$ = ; //  | Anatomical location, if relevant
$ = ; //  | The category of the condition

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $ = ; #  | Onsets as a string
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
my $ = ; #  | Manifestation/symptom
my $ = ; #  | Who has the condition?
my $ = ; #  | When the resource version last changed
my $ = ; #  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
my $ = ; #  | The clinical status of the condition
my $ = ; #  | Date related onsets (dateTime and Period)
my $ = ; #  | Date-related abatements (dateTime and period)
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
my $ = ; #  | Abatement as age or age range
my $ = ; #  | Supporting information found elsewhere
my $ = ; #  | The severity of the condition
my $ = ; #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
my $ = ; #  | Date record was first recorded
my $ = ; #  | Security Labels applied to this resource
my $ = ; #  | Encounter created as part of
my $ = ; #  | Search the contents of the resource's data using a filter
my $ = ; #  | Person who asserts this condition
my $ = ; #  | Profiles this resource claims to conform to
my $ = ; #  | Simple summary (disease specific)
my $ = ; #  | Abatement as a string
my $ = ; #  | Tags applied to this resource
my $ = ; #  | Return resources linked to by the given target
my $ = ; #  | Onsets as age or age range
my $ = ; #  | Identifies where the resource comes from
my $ = ; #  | Logical id of this artifact
my $ = ; #  | Search on the narrative of the resource
my $ = ; #  | Search on the entire content of the resource
my $ = ; #  | Anatomical location, if relevant
my $ = ; #  | The category of the condition

eval { 
    my $result = $api_instance->conditionGet( => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionGet: $@\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.ConditionApi()
 =  #  | Onsets as a string (optional)
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered (optional)
 =  #  | Manifestation/symptom (optional)
 =  #  | Who has the condition? (optional)
 =  #  | When the resource version last changed (optional)
 =  #  | unconfirmed | provisional | differential | confirmed | refuted | entered-in-error (optional)
 =  #  | The clinical status of the condition (optional)
 =  #  | Date related onsets (dateTime and Period) (optional)
 =  #  | Date-related abatements (dateTime and period) (optional)
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.
* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement
* [Observation](observation.html): The subject that the observation is about (if patient)
* [Procedure](procedure.html): Search by subject - a patient
* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?
* [ServiceRequest](servicerequest.html): Search by subject - a patient
* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied
* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for (optional)
 =  #  | Abatement as age or age range (optional)
 =  #  | Supporting information found elsewhere (optional)
 =  #  | The severity of the condition (optional)
 =  #  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): External ids for this item
* [CarePlan](careplan.html): External Ids for this plan
* [CareTeam](careteam.html): External Ids for this team
* [Composition](composition.html): Version-independent identifier for the Composition
* [Condition](condition.html): A unique identifier of the condition record
* [Consent](consent.html): Identifier for this record (external references)
* [DetectedIssue](detectedissue.html): Unique id for the detected issue
* [DeviceRequest](devicerequest.html): Business identifier for request/order
* [DiagnosticReport](diagnosticreport.html): An identifier for the report
* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents
* [DocumentReference](documentreference.html): Master Version Specific Identifier
* [Encounter](encounter.html): Identifier(s) by which this encounter is known
* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare
* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier
* [Goal](goal.html): External Ids for this goal
* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number
* [Immunization](immunization.html): Business identifier
* [List](list.html): Business identifier
* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier
* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier
* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier
* [MedicationStatement](medicationstatement.html): Return statements with this external identifier
* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier
* [Observation](observation.html): The unique id for a particular observation
* [Procedure](procedure.html): A unique identifier for a procedure
* [RiskAssessment](riskassessment.html): Unique identifier for the assessment
* [ServiceRequest](servicerequest.html): Identifiers assigned to this order
* [SupplyDelivery](supplydelivery.html): External identifier
* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest
* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier (optional)
 =  #  | Date record was first recorded (optional)
 =  #  | Security Labels applied to this resource (optional)
 =  #  | Encounter created as part of (optional)
 =  #  | Search the contents of the resource's data using a filter (optional)
 =  #  | Person who asserts this condition (optional)
 =  #  | Profiles this resource claims to conform to (optional)
 =  #  | Simple summary (disease specific) (optional)
 =  #  | Abatement as a string (optional)
 =  #  | Tags applied to this resource (optional)
 =  #  | Return resources linked to by the given target (optional)
 =  #  | Onsets as age or age range (optional)
 =  #  | Identifies where the resource comes from (optional)
 =  #  | Logical id of this artifact (optional)
 =  #  | Search on the narrative of the resource (optional)
 =  #  | Search on the entire content of the resource (optional)
 =  #  | Anatomical location, if relevant (optional)
 =  #  | The category of the condition (optional)

try: 
    # search-type: Search for Condition instances
    api_response = api_instance.condition_get(=, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionGet: %s\n" % e)

Parameters

Query parameters
Name Description
onset-info
Onsets as a string
code
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance * [Condition](condition.html): Code for the condition * [DeviceRequest](devicerequest.html): Code for what is being requested/ordered * [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result * [FamilyMemberHistory](familymemberhistory.html): A search by a condition code * [List](list.html): What the purpose of this list is * [Medication](medication.html): Returns medications for a specific code * [MedicationAdministration](medicationadministration.html): Return administrations of this medication code * [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code * [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code * [MedicationStatement](medicationstatement.html): Return statements of this medication code * [Observation](observation.html): The code of the observation type * [Procedure](procedure.html): A code to identify a procedure * [ServiceRequest](servicerequest.html): What is being requested/ordered
evidence
Manifestation/symptom
subject
Who has the condition?
_lastUpdated
When the resource version last changed
verification-status
unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
clinical-status
The clinical status of the condition
onset-date
Date related onsets (dateTime and Period)
abatement-date
Date-related abatements (dateTime and period)
patient
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for * [CarePlan](careplan.html): Who the care plan is for * [CareTeam](careteam.html): Who care team is for * [ClinicalImpression](clinicalimpression.html): Patient or group assessed * [Composition](composition.html): Who and/or what the composition is about * [Condition](condition.html): Who has the condition? * [Consent](consent.html): Who the consent applies to * [DetectedIssue](detectedissue.html): Associated patient * [DeviceRequest](devicerequest.html): Individual the service is ordered for * [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient * [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient * [DocumentManifest](documentmanifest.html): The subject of the set of documents * [DocumentReference](documentreference.html): Who/what is the subject of the document * [Encounter](encounter.html): The patient or group present at the encounter * [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care * [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for * [Flag](flag.html): The identity of a subject to list flags for * [Goal](goal.html): Who this goal is intended for * [ImagingStudy](imagingstudy.html): Who the study is about * [Immunization](immunization.html): The patient for the vaccination record * [List](list.html): If all resources have the same subject * [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for * [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for * [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient * [MedicationStatement](medicationstatement.html): Returns statements for a specific patient. * [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement * [Observation](observation.html): The subject that the observation is about (if patient) * [Procedure](procedure.html): Search by subject - a patient * [RiskAssessment](riskassessment.html): Who/what does assessment apply to? * [ServiceRequest](servicerequest.html): Search by subject - a patient * [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied * [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for
abatement-age
Abatement as age or age range
evidence-detail
Supporting information found elsewhere
severity
The severity of the condition
identifier
Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): External ids for this item * [CarePlan](careplan.html): External Ids for this plan * [CareTeam](careteam.html): External Ids for this team * [Composition](composition.html): Version-independent identifier for the Composition * [Condition](condition.html): A unique identifier of the condition record * [Consent](consent.html): Identifier for this record (external references) * [DetectedIssue](detectedissue.html): Unique id for the detected issue * [DeviceRequest](devicerequest.html): Business identifier for request/order * [DiagnosticReport](diagnosticreport.html): An identifier for the report * [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents * [DocumentReference](documentreference.html): Master Version Specific Identifier * [Encounter](encounter.html): Identifier(s) by which this encounter is known * [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare * [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier * [Goal](goal.html): External Ids for this goal * [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number * [Immunization](immunization.html): Business identifier * [List](list.html): Business identifier * [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier * [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier * [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier * [MedicationStatement](medicationstatement.html): Return statements with this external identifier * [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier * [Observation](observation.html): The unique id for a particular observation * [Procedure](procedure.html): A unique identifier for a procedure * [RiskAssessment](riskassessment.html): Unique identifier for the assessment * [ServiceRequest](servicerequest.html): Identifiers assigned to this order * [SupplyDelivery](supplydelivery.html): External identifier * [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest * [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier
recorded-date
Date record was first recorded
_security
Security Labels applied to this resource
encounter
Encounter created as part of
_filter
Search the contents of the resource's data using a filter
asserter
Person who asserts this condition
_profile
Profiles this resource claims to conform to
stage
Simple summary (disease specific)
abatement-string
Abatement as a string
_tag
Tags applied to this resource
_has
Return resources linked to by the given target
onset-age
Onsets as age or age range
_source
Identifies where the resource comes from
_id
Logical id of this artifact
_text
Search on the narrative of the resource
_content
Search on the entire content of the resource
body-site
Anatomical location, if relevant
category
The category of the condition

Responses

Status: 200 - Success


conditionHistoryGet

type-history: Fetch the resource change history for all resources of type Condition


/Condition/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionHistoryGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionHistoryGet");
            e.printStackTrace();
        }
    }
}

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

// type-history: Fetch the resource change history for all resources of type Condition
[apiInstance conditionHistoryGetWithCompletionHandler: 
              ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new ConditionApi();

            try
            {
                // type-history: Fetch the resource change history for all resources of type Condition
                FHIR-JSON-RESOURCE result = apiInstance.conditionHistoryGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();

eval { 
    my $result = $api_instance->conditionHistoryGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionHistoryGet: $@\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.ConditionApi()

try: 
    # type-history: Fetch the resource change history for all resources of type Condition
    api_response = api_instance.condition_history_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionHistoryGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


conditionIdGet

read-instance: Read Condition instance


/Condition/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

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

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// read-instance: Read Condition instance
[apiInstance conditionIdGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // read-instance: Read Condition instance
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->conditionIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdGet: $@\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.ConditionApi()
id = id_example # String | The resource ID

try: 
    # read-instance: Read Condition instance
    api_response = api_instance.condition_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


conditionIdHistoryGet

instance-history: Fetch the resource change history for all resources of type Condition


/Condition/{id}/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

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

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdHistoryGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdHistoryGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// instance-history: Fetch the resource change history for all resources of type Condition
[apiInstance conditionIdHistoryGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // instance-history: Fetch the resource change history for all resources of type Condition
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdHistoryGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->conditionIdHistoryGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdHistoryGet: $@\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.ConditionApi()
id = id_example # String | The resource ID

try: 
    # instance-history: Fetch the resource change history for all resources of type Condition
    api_response = api_instance.condition_id_history_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdHistoryGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


conditionIdHistoryVersionIdGet

vread-instance: Read Condition instance with specific version


/Condition/{id}/_history/{version_id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/_history/{version_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
String *versionId = versionId_example; // The resource version ID

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

// vread-instance: Read Condition instance with specific version
[apiInstance conditionIdHistoryVersionIdGetWith:id
    versionId:versionId
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var versionId = versionId_example; // {{String}} The resource version ID

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

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var versionId = versionId_example;  // String | The resource version ID

            try
            {
                // vread-instance: Read Condition instance with specific version
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdHistoryVersionIdGet(id, versionId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdHistoryVersionIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$versionId = versionId_example; // String | The resource version ID

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $versionId = versionId_example; # String | The resource version ID

eval { 
    my $result = $api_instance->conditionIdHistoryVersionIdGet(id => $id, versionId => $versionId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdHistoryVersionIdGet: $@\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.ConditionApi()
id = id_example # String | The resource ID
versionId = versionId_example # String | The resource version ID

try: 
    # vread-instance: Read Condition instance with specific version
    api_response = api_instance.condition_id_history_version_id_get(id, versionId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdHistoryVersionIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
version_id*
String
The resource version ID
Required

Responses

Status: 200 - Success


conditionIddiffGet

Comparte two resources or two versions of a single resource

This operation examines two resource versions (can be two versions of the same resource, or two different resources) and generates a FHIR Patch document showing the differences.


/Condition/{id}/$diff

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/$diff?from=&to=&includeMeta=&fromVersion="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | The resource ID and version to diff from
          = ; //  | The resource ID and version to diff to
          = ; //  | Should differences in the Resource.meta element be included in the diff
          = ; //  | The resource ID and version to diff from
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIddiffGet(id, , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIddiffGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | The resource ID and version to diff from
          = ; //  | The resource ID and version to diff to
          = ; //  | Should differences in the Resource.meta element be included in the diff
          = ; //  | The resource ID and version to diff from
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIddiffGet(id, , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIddiffGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
 * = ; // The resource ID and version to diff from
 * = ; // The resource ID and version to diff to
 * = ; // Should differences in the Resource.meta element be included in the diff (optional)
 * = ; // The resource ID and version to diff from (optional)

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

// Comparte two resources or two versions of a single resource
[apiInstance conditionIddiffGetWith:id
    :
    :
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var  = ; // {{}} The resource ID and version to diff from
var  = ; // {{}} The resource ID and version to diff to
var opts = { 
  '': , // {{}} Should differences in the Resource.meta element be included in the diff
  '':  // {{}} The resource ID and version to diff from
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIddiffGet(id, , , opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var  = new (); //  | The resource ID and version to diff from
            var  = new (); //  | The resource ID and version to diff to
            var  = new (); //  | Should differences in the Resource.meta element be included in the diff (optional) 
            var  = new (); //  | The resource ID and version to diff from (optional) 

            try
            {
                // Comparte two resources or two versions of a single resource
                FHIR-JSON-RESOURCE result = apiInstance.conditionIddiffGet(id, , , , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIddiffGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$ = ; //  | The resource ID and version to diff from
$ = ; //  | The resource ID and version to diff to
$ = ; //  | Should differences in the Resource.meta element be included in the diff
$ = ; //  | The resource ID and version to diff from

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $ = ; #  | The resource ID and version to diff from
my $ = ; #  | The resource ID and version to diff to
my $ = ; #  | Should differences in the Resource.meta element be included in the diff
my $ = ; #  | The resource ID and version to diff from

eval { 
    my $result = $api_instance->conditionIddiffGet(id => $id,  => $,  => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIddiffGet: $@\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.ConditionApi()
id = id_example # String | The resource ID
 =  #  | The resource ID and version to diff from
 =  #  | The resource ID and version to diff to
 =  #  | Should differences in the Resource.meta element be included in the diff (optional)
 =  #  | The resource ID and version to diff from (optional)

try: 
    # Comparte two resources or two versions of a single resource
    api_response = api_instance.condition_iddiff_get(id, , , =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIddiffGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Query parameters
Name Description
from*
The resource ID and version to diff from
Required
to*
The resource ID and version to diff to
Required
includeMeta
Should differences in the Resource.meta element be included in the diff
fromVersion
The resource ID and version to diff from

Responses

Status: 200 - Success


conditionIdexpungePost


/Condition/{id}/$expunge

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json"\
"https://${base_url}/api/fhir.php/Condition/{id}/$expunge"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdexpungePost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdexpungePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdexpungePost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdexpungePost");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
Object *body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; //  (optional)

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

[apiInstance conditionIdexpungePostWith:id
    body:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var opts = { 
  'body': "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}" // {{Object}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIdexpungePost(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var body = new Object(); // Object |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdexpungePost(id, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdexpungePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $body = WWW::SwaggerClient::Object::Object->new(); # Object | 

eval { 
    my $result = $api_instance->conditionIdexpungePost(id => $id, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdexpungePost: $@\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.ConditionApi()
id = id_example # String | The resource ID
body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}" # Object |  (optional)

try: 
    api_response = api_instance.condition_idexpunge_post(id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdexpungePost: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Body parameters
Name Description
body

Responses

Status: 200 - Success


conditionIdgraphqlGet

This operation invokes a GraphQL expression for fetching an joining a graph of resources, returning them in a custom format.


/Condition/{id}/$graphql

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/$graphql"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

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

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdgraphqlGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdgraphqlGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

[apiInstance conditionIdgraphqlGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdgraphqlGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdgraphqlGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->conditionIdgraphqlGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdgraphqlGet: $@\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.ConditionApi()
id = id_example # String | The resource ID

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

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


conditionIdmetaAddPost

Add tags, profiles, and/or security labels to a resource


/Condition/{id}/$meta-add

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json"\
"https://${base_url}/api/fhir.php/Condition/{id}/$meta-add"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaAddPost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaAddPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaAddPost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaAddPost");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
Object *body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; //  (optional)

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

[apiInstance conditionIdmetaAddPostWith:id
    body:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var opts = { 
  'body': "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}" // {{Object}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIdmetaAddPost(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var body = new Object(); // Object |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaAddPost(id, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdmetaAddPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $body = WWW::SwaggerClient::Object::Object->new(); # Object | 

eval { 
    my $result = $api_instance->conditionIdmetaAddPost(id => $id, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdmetaAddPost: $@\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.ConditionApi()
id = id_example # String | The resource ID
body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}" # Object |  (optional)

try: 
    api_response = api_instance.condition_idmeta_add_post(id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdmetaAddPost: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Body parameters
Name Description
body

Responses

Status: 200 - Success


conditionIdmetaDeletePost

Delete tags, profiles, and/or security labels from a resource


/Condition/{id}/$meta-delete

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json"\
"https://${base_url}/api/fhir.php/Condition/{id}/$meta-delete"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaDeletePost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaDeletePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaDeletePost(id, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaDeletePost");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
Object *body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; //  (optional)

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

[apiInstance conditionIdmetaDeletePostWith:id
    body:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var opts = { 
  'body': "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}" // {{Object}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIdmetaDeletePost(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var body = new Object(); // Object |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaDeletePost(id, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdmetaDeletePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}"; // Object | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $body = WWW::SwaggerClient::Object::Object->new(); # Object | 

eval { 
    my $result = $api_instance->conditionIdmetaDeletePost(id => $id, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdmetaDeletePost: $@\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.ConditionApi()
id = id_example # String | The resource ID
body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"meta\"\n  }, {\n    \"name\": \"return\"\n  } ]\n}" # Object |  (optional)

try: 
    api_response = api_instance.condition_idmeta_delete_post(id, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdmetaDeletePost: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Body parameters
Name Description
body

Responses

Status: 200 - Success


conditionIdmetaGet

Request a list of tags, profiles, and security labels for a specfic resource instance


/Condition/{id}/$meta

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/$meta?return="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaGet(id, );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaGet(id, );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdmetaGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
 * = ; //  (optional)

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

[apiInstance conditionIdmetaGetWith:id
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var opts = { 
  '':  // {{}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIdmetaGet(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var  = new (); //  |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdmetaGet(id, );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdmetaGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$ = ; //  | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $ = ; #  | 

eval { 
    my $result = $api_instance->conditionIdmetaGet(id => $id,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdmetaGet: $@\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.ConditionApi()
id = id_example # String | The resource ID
 =  #  |  (optional)

try: 
    api_response = api_instance.condition_idmeta_get(id, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdmetaGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Query parameters
Name Description
return

Responses

Status: 200 - Success


conditionIdvalidateGet


/Condition/{id}/$validate

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/{id}/$validate?resource=&mode=&profile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | 
          = ; //  | 
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdvalidateGet(id, , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdvalidateGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        String id = id_example; // String | The resource ID
          = ; //  | 
          = ; //  | 
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionIdvalidateGet(id, , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionIdvalidateGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
 * = ; //  (optional)
 * = ; //  (optional)
 * = ; //  (optional)

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

[apiInstance conditionIdvalidateGetWith:id
    :
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var id = id_example; // {{String}} The resource ID
var opts = { 
  '': , // {{}} 
  '': , // {{}} 
  '':  // {{}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionIdvalidateGet(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var id = id_example;  // String | The resource ID
            var  = new (); //  |  (optional) 
            var  = new (); //  |  (optional) 
            var  = new (); //  |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionIdvalidateGet(id, , , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionIdvalidateGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$id = id_example; // String | The resource ID
$ = ; //  | 
$ = ; //  | 
$ = ; //  | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $id = id_example; # String | The resource ID
my $ = ; #  | 
my $ = ; #  | 
my $ = ; #  | 

eval { 
    my $result = $api_instance->conditionIdvalidateGet(id => $id,  => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionIdvalidateGet: $@\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.ConditionApi()
id = id_example # String | The resource ID
 =  #  |  (optional)
 =  #  |  (optional)
 =  #  |  (optional)

try: 
    api_response = api_instance.condition_idvalidate_get(id, =, =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionIdvalidateGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
Query parameters
Name Description
resource
mode
profile

Responses

Status: 200 - Success


conditionPost

create-type: Create a new Condition instance


/Condition

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"Condition\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionPost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"Condition\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionPost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionPost");
            e.printStackTrace();
        }
    }
}
FHIR-JSON-RESOURCE *body = "{\n  \"resourceType\": \"Condition\"\n}"; //  (optional)

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

// create-type: Create a new Condition instance
[apiInstance conditionPostWith:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var opts = { 
  'body': "{\n  \"resourceType\": \"Condition\"\n}" // {{FHIR-JSON-RESOURCE}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionPost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var body = new FHIR-JSON-RESOURCE(); // FHIR-JSON-RESOURCE |  (optional) 

            try
            {
                // create-type: Create a new Condition instance
                FHIR-JSON-RESOURCE result = apiInstance.conditionPost(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$body = "{\n  \"resourceType\": \"Condition\"\n}"; // FHIR-JSON-RESOURCE | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $body = WWW::SwaggerClient::Object::FHIR-JSON-RESOURCE->new(); # FHIR-JSON-RESOURCE | 

eval { 
    my $result = $api_instance->conditionPost(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionPost: $@\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.ConditionApi()
body = "{\n  \"resourceType\": \"Condition\"\n}" # FHIR-JSON-RESOURCE |  (optional)

try: 
    # create-type: Create a new Condition instance
    api_response = api_instance.condition_post(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionPost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


conditionexpungePost


/Condition/$expunge

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json"\
"https://${base_url}/api/fhir.php/Condition/$expunge"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionexpungePost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionexpungePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
        Object body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionexpungePost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionexpungePost");
            e.printStackTrace();
        }
    }
}
Object *body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; //  (optional)

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

[apiInstance conditionexpungePostWith:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.ConditionApi()
var opts = { 
  'body': "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}" // {{Object}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.conditionexpungePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new ConditionApi();
            var body = new Object(); // Object |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionexpungePost(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionexpungePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}"; // Object | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $body = WWW::SwaggerClient::Object::Object->new(); # Object | 

eval { 
    my $result = $api_instance->conditionexpungePost(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionexpungePost: $@\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.ConditionApi()
body = "{\n  \"resourceType\": \"Parameters\",\n  \"parameter\": [ {\n    \"name\": \"limit\",\n    \"valueInteger\": 0\n  }, {\n    \"name\": \"expungeDeletedResources\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungePreviousVersions\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"expungeEverything\",\n    \"valueBoolean\": false\n  }, {\n    \"name\": \"count\"\n  } ]\n}" # Object |  (optional)

try: 
    api_response = api_instance.conditionexpunge_post(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionexpungePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


conditionmetaGet

Request a list of tags, profiles, and security labels for a specfic resource instance


/Condition/$meta

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/$meta?return="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionmetaGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionmetaGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionmetaGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionmetaGet");
            e.printStackTrace();
        }
    }
}
 * = ; //  (optional)

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

[apiInstance conditionmetaGetWith:
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new ConditionApi();
            var  = new (); //  |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionmetaGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionmetaGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$ = ; //  | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $ = ; #  | 

eval { 
    my $result = $api_instance->conditionmetaGet( => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionmetaGet: $@\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.ConditionApi()
 =  #  |  (optional)

try: 
    api_response = api_instance.conditionmeta_get(=)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionmetaGet: %s\n" % e)

Parameters

Query parameters
Name Description
return

Responses

Status: 200 - Success


conditionvalidateGet


/Condition/$validate

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Condition/$validate?resource=&mode=&profile="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ConditionApi;

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

public class ConditionApiExample {

    public static void main(String[] args) {
        
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | 
          = ; //  | 
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionvalidateGet(, , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionvalidateGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ConditionApi;

public class ConditionApiExample {

    public static void main(String[] args) {
        ConditionApi apiInstance = new ConditionApi();
          = ; //  | 
          = ; //  | 
          = ; //  | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.conditionvalidateGet(, , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ConditionApi#conditionvalidateGet");
            e.printStackTrace();
        }
    }
}
 * = ; //  (optional)
 * = ; //  (optional)
 * = ; //  (optional)

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

[apiInstance conditionvalidateGetWith:
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new ConditionApi();
            var  = new (); //  |  (optional) 
            var  = new (); //  |  (optional) 
            var  = new (); //  |  (optional) 

            try
            {
                FHIR-JSON-RESOURCE result = apiInstance.conditionvalidateGet(, , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ConditionApi.conditionvalidateGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiConditionApi();
$ = ; //  | 
$ = ; //  | 
$ = ; //  | 

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

my $api_instance = WWW::SwaggerClient::ConditionApi->new();
my $ = ; #  | 
my $ = ; #  | 
my $ = ; #  | 

eval { 
    my $result = $api_instance->conditionvalidateGet( => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ConditionApi->conditionvalidateGet: $@\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.ConditionApi()
 =  #  |  (optional)
 =  #  |  (optional)
 =  #  |  (optional)

try: 
    api_response = api_instance.conditionvalidate_get(=, =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ConditionApi->conditionvalidateGet: %s\n" % e)

Parameters

Query parameters
Name Description
resource
mode
profile

Responses

Status: 200 - Success


Device

deviceGet

search-type: Search for Device instances

This is a search type


/Device

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device?udi-di=&identifier=&udi-carrier=&device-name=&_lastUpdated=&_security=&type=&url=&manufacturer=&_filter=&_profile=&patient=&_tag=&organization=&_has=&_source=&location=&model=&_id=&_text=&_content=&status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

    public static void main(String[] args) {
        
        DeviceApi apiInstance = new DeviceApi();
          = ; //  | The udi Device Identifier (DI)
          = ; //  | Instance id from manufacturer, owner, and others
          = ; //  | UDI Barcode (RFID or other technology) string in *HRF* format.
          = ; //  | A server defined search that may match any of the string fields in Device.deviceName or Device.type.
          = ; //  | When the resource version last changed
          = ; //  | Security Labels applied to this resource
          = ; //  | The type of the device
          = ; //  | Network address to contact device
          = ; //  | The manufacturer of the device
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Patient information, if the resource is affixed to a person
          = ; //  | Tags applied to this resource
          = ; //  | The organization responsible for the device
          = ; //  | Return resources linked to by the given target
          = ; //  | Identifies where the resource comes from
          = ; //  | A location, where the resource is found
          = ; //  | The model of the device
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | active | inactive | entered-in-error | unknown
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceGet(, , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DeviceApi;

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
          = ; //  | The udi Device Identifier (DI)
          = ; //  | Instance id from manufacturer, owner, and others
          = ; //  | UDI Barcode (RFID or other technology) string in *HRF* format.
          = ; //  | A server defined search that may match any of the string fields in Device.deviceName or Device.type.
          = ; //  | When the resource version last changed
          = ; //  | Security Labels applied to this resource
          = ; //  | The type of the device
          = ; //  | Network address to contact device
          = ; //  | The manufacturer of the device
          = ; //  | Search the contents of the resource's data using a filter
          = ; //  | Profiles this resource claims to conform to
          = ; //  | Patient information, if the resource is affixed to a person
          = ; //  | Tags applied to this resource
          = ; //  | The organization responsible for the device
          = ; //  | Return resources linked to by the given target
          = ; //  | Identifies where the resource comes from
          = ; //  | A location, where the resource is found
          = ; //  | The model of the device
          = ; //  | Logical id of this artifact
          = ; //  | Search on the narrative of the resource
          = ; //  | Search on the entire content of the resource
          = ; //  | active | inactive | entered-in-error | unknown
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceGet(, , , , , , , , , , , , , , , , , , , , , );
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceGet");
            e.printStackTrace();
        }
    }
}
 * = ; // The udi Device Identifier (DI) (optional)
 * = ; // Instance id from manufacturer, owner, and others (optional)
 * = ; // UDI Barcode (RFID or other technology) string in *HRF* format. (optional)
 * = ; // A server defined search that may match any of the string fields in Device.deviceName or Device.type. (optional)
 * = ; // When the resource version last changed (optional)
 * = ; // Security Labels applied to this resource (optional)
 * = ; // The type of the device (optional)
 * = ; // Network address to contact device (optional)
 * = ; // The manufacturer of the device (optional)
 * = ; // Search the contents of the resource's data using a filter (optional)
 * = ; // Profiles this resource claims to conform to (optional)
 * = ; // Patient information, if the resource is affixed to a person (optional)
 * = ; // Tags applied to this resource (optional)
 * = ; // The organization responsible for the device (optional)
 * = ; // Return resources linked to by the given target (optional)
 * = ; // Identifies where the resource comes from (optional)
 * = ; // A location, where the resource is found (optional)
 * = ; // The model of the device (optional)
 * = ; // Logical id of this artifact (optional)
 * = ; // Search on the narrative of the resource (optional)
 * = ; // Search on the entire content of the resource (optional)
 * = ; // active | inactive | entered-in-error | unknown (optional)

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

// search-type: Search for Device instances
[apiInstance deviceGetWith:
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
    :
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.DeviceApi()
var opts = { 
  '': , // {{}} The udi Device Identifier (DI)
  '': , // {{}} Instance id from manufacturer, owner, and others
  '': , // {{}} UDI Barcode (RFID or other technology) string in *HRF* format.
  '': , // {{}} A server defined search that may match any of the string fields in Device.deviceName or Device.type.
  '': , // {{}} When the resource version last changed
  '': , // {{}} Security Labels applied to this resource
  '': , // {{}} The type of the device
  '': , // {{}} Network address to contact device
  '': , // {{}} The manufacturer of the device
  '': , // {{}} Search the contents of the resource's data using a filter
  '': , // {{}} Profiles this resource claims to conform to
  '': , // {{}} Patient information, if the resource is affixed to a person
  '': , // {{}} Tags applied to this resource
  '': , // {{}} The organization responsible for the device
  '': , // {{}} Return resources linked to by the given target
  '': , // {{}} Identifies where the resource comes from
  '': , // {{}} A location, where the resource is found
  '': , // {{}} The model of the device
  '': , // {{}} Logical id of this artifact
  '': , // {{}} Search on the narrative of the resource
  '': , // {{}} Search on the entire content of the resource
  '':  // {{}} active | inactive | entered-in-error | unknown
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.deviceGet(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DeviceApi();
            var  = new (); //  | The udi Device Identifier (DI) (optional) 
            var  = new (); //  | Instance id from manufacturer, owner, and others (optional) 
            var  = new (); //  | UDI Barcode (RFID or other technology) string in *HRF* format. (optional) 
            var  = new (); //  | A server defined search that may match any of the string fields in Device.deviceName or Device.type. (optional) 
            var  = new (); //  | When the resource version last changed (optional) 
            var  = new (); //  | Security Labels applied to this resource (optional) 
            var  = new (); //  | The type of the device (optional) 
            var  = new (); //  | Network address to contact device (optional) 
            var  = new (); //  | The manufacturer of the device (optional) 
            var  = new (); //  | Search the contents of the resource's data using a filter (optional) 
            var  = new (); //  | Profiles this resource claims to conform to (optional) 
            var  = new (); //  | Patient information, if the resource is affixed to a person (optional) 
            var  = new (); //  | Tags applied to this resource (optional) 
            var  = new (); //  | The organization responsible for the device (optional) 
            var  = new (); //  | Return resources linked to by the given target (optional) 
            var  = new (); //  | Identifies where the resource comes from (optional) 
            var  = new (); //  | A location, where the resource is found (optional) 
            var  = new (); //  | The model of the device (optional) 
            var  = new (); //  | Logical id of this artifact (optional) 
            var  = new (); //  | Search on the narrative of the resource (optional) 
            var  = new (); //  | Search on the entire content of the resource (optional) 
            var  = new (); //  | active | inactive | entered-in-error | unknown (optional) 

            try
            {
                // search-type: Search for Device instances
                FHIR-JSON-RESOURCE result = apiInstance.deviceGet(, , , , , , , , , , , , , , , , , , , , , );
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.deviceGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();
$ = ; //  | The udi Device Identifier (DI)
$ = ; //  | Instance id from manufacturer, owner, and others
$ = ; //  | UDI Barcode (RFID or other technology) string in *HRF* format.
$ = ; //  | A server defined search that may match any of the string fields in Device.deviceName or Device.type.
$ = ; //  | When the resource version last changed
$ = ; //  | Security Labels applied to this resource
$ = ; //  | The type of the device
$ = ; //  | Network address to contact device
$ = ; //  | The manufacturer of the device
$ = ; //  | Search the contents of the resource's data using a filter
$ = ; //  | Profiles this resource claims to conform to
$ = ; //  | Patient information, if the resource is affixed to a person
$ = ; //  | Tags applied to this resource
$ = ; //  | The organization responsible for the device
$ = ; //  | Return resources linked to by the given target
$ = ; //  | Identifies where the resource comes from
$ = ; //  | A location, where the resource is found
$ = ; //  | The model of the device
$ = ; //  | Logical id of this artifact
$ = ; //  | Search on the narrative of the resource
$ = ; //  | Search on the entire content of the resource
$ = ; //  | active | inactive | entered-in-error | unknown

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();
my $ = ; #  | The udi Device Identifier (DI)
my $ = ; #  | Instance id from manufacturer, owner, and others
my $ = ; #  | UDI Barcode (RFID or other technology) string in *HRF* format.
my $ = ; #  | A server defined search that may match any of the string fields in Device.deviceName or Device.type.
my $ = ; #  | When the resource version last changed
my $ = ; #  | Security Labels applied to this resource
my $ = ; #  | The type of the device
my $ = ; #  | Network address to contact device
my $ = ; #  | The manufacturer of the device
my $ = ; #  | Search the contents of the resource's data using a filter
my $ = ; #  | Profiles this resource claims to conform to
my $ = ; #  | Patient information, if the resource is affixed to a person
my $ = ; #  | Tags applied to this resource
my $ = ; #  | The organization responsible for the device
my $ = ; #  | Return resources linked to by the given target
my $ = ; #  | Identifies where the resource comes from
my $ = ; #  | A location, where the resource is found
my $ = ; #  | The model of the device
my $ = ; #  | Logical id of this artifact
my $ = ; #  | Search on the narrative of the resource
my $ = ; #  | Search on the entire content of the resource
my $ = ; #  | active | inactive | entered-in-error | unknown

eval { 
    my $result = $api_instance->deviceGet( => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $,  => $);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->deviceGet: $@\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.DeviceApi()
 =  #  | The udi Device Identifier (DI) (optional)
 =  #  | Instance id from manufacturer, owner, and others (optional)
 =  #  | UDI Barcode (RFID or other technology) string in *HRF* format. (optional)
 =  #  | A server defined search that may match any of the string fields in Device.deviceName or Device.type. (optional)
 =  #  | When the resource version last changed (optional)
 =  #  | Security Labels applied to this resource (optional)
 =  #  | The type of the device (optional)
 =  #  | Network address to contact device (optional)
 =  #  | The manufacturer of the device (optional)
 =  #  | Search the contents of the resource's data using a filter (optional)
 =  #  | Profiles this resource claims to conform to (optional)
 =  #  | Patient information, if the resource is affixed to a person (optional)
 =  #  | Tags applied to this resource (optional)
 =  #  | The organization responsible for the device (optional)
 =  #  | Return resources linked to by the given target (optional)
 =  #  | Identifies where the resource comes from (optional)
 =  #  | A location, where the resource is found (optional)
 =  #  | The model of the device (optional)
 =  #  | Logical id of this artifact (optional)
 =  #  | Search on the narrative of the resource (optional)
 =  #  | Search on the entire content of the resource (optional)
 =  #  | active | inactive | entered-in-error | unknown (optional)

try: 
    # search-type: Search for Device instances
    api_response = api_instance.device_get(=, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =, =)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->deviceGet: %s\n" % e)

Parameters

Query parameters
Name Description
udi-di
The udi Device Identifier (DI)
identifier
Instance id from manufacturer, owner, and others
udi-carrier
UDI Barcode (RFID or other technology) string in *HRF* format.
device-name
A server defined search that may match any of the string fields in Device.deviceName or Device.type.
_lastUpdated
When the resource version last changed
_security
Security Labels applied to this resource
type
The type of the device
url
Network address to contact device
manufacturer
The manufacturer of the device
_filter
Search the contents of the resource's data using a filter
_profile
Profiles this resource claims to conform to
patient
Patient information, if the resource is affixed to a person
_tag
Tags applied to this resource
organization
The organization responsible for the device
_has
Return resources linked to by the given target
_source
Identifies where the resource comes from
location
A location, where the resource is found
model
The model of the device
_id
Logical id of this artifact
_text
Search on the narrative of the resource
_content
Search on the entire content of the resource
status
active | inactive | entered-in-error | unknown

Responses

Status: 200 - Success


deviceHistoryGet

type-history: Fetch the resource change history for all resources of type Device


/Device/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

    public static void main(String[] args) {
        
        DeviceApi apiInstance = new DeviceApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceHistoryGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DeviceApi;

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceHistoryGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceHistoryGet");
            e.printStackTrace();
        }
    }
}

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

// type-history: Fetch the resource change history for all resources of type Device
[apiInstance deviceHistoryGetWithCompletionHandler: 
              ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

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

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

            var apiInstance = new DeviceApi();

            try
            {
                // type-history: Fetch the resource change history for all resources of type Device
                FHIR-JSON-RESOURCE result = apiInstance.deviceHistoryGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.deviceHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();

eval { 
    my $result = $api_instance->deviceHistoryGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->deviceHistoryGet: $@\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.DeviceApi()

try: 
    # type-history: Fetch the resource change history for all resources of type Device
    api_response = api_instance.device_history_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->deviceHistoryGet: %s\n" % e)

Parameters

Responses

Status: 200 - Success


deviceIdGet

read-instance: Read Device instance


/Device/{id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device/{id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

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

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceIdGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// read-instance: Read Device instance
[apiInstance deviceIdGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.DeviceApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new DeviceApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // read-instance: Read Device instance
                FHIR-JSON-RESOURCE result = apiInstance.deviceIdGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.deviceIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->deviceIdGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->deviceIdGet: $@\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.DeviceApi()
id = id_example # String | The resource ID

try: 
    # read-instance: Read Device instance
    api_response = api_instance.device_id_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->deviceIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


deviceIdHistoryGet

instance-history: Fetch the resource change history for all resources of type Device


/Device/{id}/_history

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device/{id}/_history"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

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

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
        String id = id_example; // String | The resource ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceIdHistoryGet(id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceIdHistoryGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID

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

// instance-history: Fetch the resource change history for all resources of type Device
[apiInstance deviceIdHistoryGetWith:id
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.DeviceApi()
var id = id_example; // {{String}} The resource ID

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

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

            var apiInstance = new DeviceApi();
            var id = id_example;  // String | The resource ID

            try
            {
                // instance-history: Fetch the resource change history for all resources of type Device
                FHIR-JSON-RESOURCE result = apiInstance.deviceIdHistoryGet(id);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.deviceIdHistoryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();
$id = id_example; // String | The resource ID

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();
my $id = id_example; # String | The resource ID

eval { 
    my $result = $api_instance->deviceIdHistoryGet(id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->deviceIdHistoryGet: $@\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.DeviceApi()
id = id_example # String | The resource ID

try: 
    # instance-history: Fetch the resource change history for all resources of type Device
    api_response = api_instance.device_id_history_get(id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->deviceIdHistoryGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required

Responses

Status: 200 - Success


deviceIdHistoryVersionIdGet

vread-instance: Read Device instance with specific version


/Device/{id}/_history/{version_id}

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device/{id}/_history/{version_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

    public static void main(String[] args) {
        
        DeviceApi apiInstance = new DeviceApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DeviceApi;

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
        String id = id_example; // String | The resource ID
        String versionId = versionId_example; // String | The resource version ID
        try {
            FHIR-JSON-RESOURCE result = apiInstance.deviceIdHistoryVersionIdGet(id, versionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#deviceIdHistoryVersionIdGet");
            e.printStackTrace();
        }
    }
}
String *id = id_example; // The resource ID
String *versionId = versionId_example; // The resource version ID

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

// vread-instance: Read Device instance with specific version
[apiInstance deviceIdHistoryVersionIdGetWith:id
    versionId:versionId
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.DeviceApi()
var id = id_example; // {{String}} The resource ID
var versionId = versionId_example; // {{String}} The resource version ID

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

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

            var apiInstance = new DeviceApi();
            var id = id_example;  // String | The resource ID
            var versionId = versionId_example;  // String | The resource version ID

            try
            {
                // vread-instance: Read Device instance with specific version
                FHIR-JSON-RESOURCE result = apiInstance.deviceIdHistoryVersionIdGet(id, versionId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.deviceIdHistoryVersionIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();
$id = id_example; // String | The resource ID
$versionId = versionId_example; // String | The resource version ID

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();
my $id = id_example; # String | The resource ID
my $versionId = versionId_example; # String | The resource version ID

eval { 
    my $result = $api_instance->deviceIdHistoryVersionIdGet(id => $id, versionId => $versionId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->deviceIdHistoryVersionIdGet: $@\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.DeviceApi()
id = id_example # String | The resource ID
versionId = versionId_example # String | The resource version ID

try: 
    # vread-instance: Read Device instance with specific version
    api_response = api_instance.device_id_history_version_id_get(id, versionId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->deviceIdHistoryVersionIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
id*
String
The resource ID
Required
version_id*
String
The resource version ID
Required

Responses

Status: 200 - Success


devicePost

create-type: Create a new Device instance


/Device

Usage and SDK Samples

curl -X POST\
-H "Accept: application/fhir+json,application/fhir+xml"\
-H "Content-Type: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/Device"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeviceApi;

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

public class DeviceApiExample {

    public static void main(String[] args) {
        
        DeviceApi apiInstance = new DeviceApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"Device\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.devicePost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#devicePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DeviceApi;

public class DeviceApiExample {

    public static void main(String[] args) {
        DeviceApi apiInstance = new DeviceApi();
        FHIR-JSON-RESOURCE body = "{\n  \"resourceType\": \"Device\"\n}"; // FHIR-JSON-RESOURCE | 
        try {
            FHIR-JSON-RESOURCE result = apiInstance.devicePost(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeviceApi#devicePost");
            e.printStackTrace();
        }
    }
}
FHIR-JSON-RESOURCE *body = "{\n  \"resourceType\": \"Device\"\n}"; //  (optional)

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

// create-type: Create a new Device instance
[apiInstance devicePostWith:body
              completionHandler: ^(FHIR-JSON-RESOURCE output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var NableFhirDocs = require('nable_fhir_docs');

var api = new NableFhirDocs.DeviceApi()
var opts = { 
  'body': "{\n  \"resourceType\": \"Device\"\n}" // {{FHIR-JSON-RESOURCE}} 
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.devicePost(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

            var apiInstance = new DeviceApi();
            var body = new FHIR-JSON-RESOURCE(); // FHIR-JSON-RESOURCE |  (optional) 

            try
            {
                // create-type: Create a new Device instance
                FHIR-JSON-RESOURCE result = apiInstance.devicePost(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeviceApi.devicePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDeviceApi();
$body = "{\n  \"resourceType\": \"Device\"\n}"; // FHIR-JSON-RESOURCE | 

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

my $api_instance = WWW::SwaggerClient::DeviceApi->new();
my $body = WWW::SwaggerClient::Object::FHIR-JSON-RESOURCE->new(); # FHIR-JSON-RESOURCE | 

eval { 
    my $result = $api_instance->devicePost(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeviceApi->devicePost: $@\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.DeviceApi()
body = "{\n  \"resourceType\": \"Device\"\n}" # FHIR-JSON-RESOURCE |  (optional)

try: 
    # create-type: Create a new Device instance
    api_response = api_instance.device_post(body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeviceApi->devicePost: %s\n" % e)

Parameters

Body parameters
Name Description
body

Responses

Status: 200 - Success


DiagnosticReport

diagnosticReportGet

search-type: Search for DiagnosticReport instances

This is a search type


/DiagnosticReport

Usage and SDK Samples

curl -X GET\
-H "Accept: application/fhir+json,application/fhir+xml"\
"https://${base_url}/api/fhir.php/DiagnosticReport?date=&code=&subject=&_lastUpdated=&media=&conclusion=&result=&based-on=&patient=&specimen=&issued=&identifier=&performer=&_security=&encounter=&_filter=&_profile=&_tag=&_has=&_source=&_id=&_text=&_content=&category=&results-interpreter=&status="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DiagnosticReportApi;

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

public class DiagnosticReportApiExample {

    public static void main(String[] args) {
        
        DiagnosticReportApi apiInstance = new DiagnosticReportApi();
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded
* [CarePlan](careplan.html): Time period plan covers
* [CareTeam](careteam.html): Time period team covers
* [ClinicalImpression](clinicalimpression.html): When the assessment was documented
* [Composition](composition.html): Composition editing time
* [Consent](consent.html): When this Consent was created or indexed
* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report
* [Encounter](encounter.html): A date within the period the Encounter lasted
* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period
* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated
* [Flag](flag.html): Time period when flag is active
* [Immunization](immunization.html): Vaccination  (non)-Administration Date
* [List](list.html): When the list was prepared
* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period
* [Procedure](procedure.html): When the procedure was performed
* [RiskAssessment](riskassessment.html): When was assessment made?
* [SupplyRequest](supplyrequest.html): When the request was made
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance
* [Condition](condition.html): Code for the condition
* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered
* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result
* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code
* [List](list.html): What the purpose of this list is
* [Medication](medication.html): Returns medications for a specific code
* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code
* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code
* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code
* [MedicationStatement](medicationstatement.html): Return statements of this medication code
* [Observation](observation.html): The code of the observation type
* [Procedure](procedure.html): A code to identify a  procedure
* [ServiceRequest](servicerequest.html): What is being requested/ordered
          = ; //  | The subject of the report
          = ; //  | When the resource version last changed
          = ; //  | A reference to the image source.
          = ; //  | A coded conclusion (interpretation/impression) on the report
          = ; //  | Link to an atomic result (observation resource)
          = ; //  | Reference to the service request.
          = ; //  | Multiple Resources: 

* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for
* [CarePlan](careplan.html): Who the care plan is for
* [CareTeam](careteam.html): Who care team is for
* [ClinicalImpression](clinicalimpression.html): Patient or group assessed
* [Composition](composition.html): Who and/or what the composition is about
* [Condition](condition.html): Who has the condition?
* [Consent](consent.html): Who the consent applies to
* [DetectedIssue](detectedissue.html): Associated patient
* [DeviceRequest](devicerequest.html): Individual the service is ordered for
* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient
* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient
* [DocumentManifest](documentmanifest.html): The subject of the set of documents
* [DocumentReference](documentreference.html): Who/what is the subject of the document
* [Encounter](encounter.html): The patient or group present at the encounter
* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care
* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for
* [Flag](flag.html): The identity of a subject to list flags for
* [Goal](goal.html): Who this goal is intended for
* [ImagingStudy](imagingstudy.html): Who the study is about
* [Immunization](immunization.html): The patient for the vaccination record
* [List](list.html): If all resources have the same subject
* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations  for
* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses  for
* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient
* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.