Core Clinical Data Set

AllData

getDocument


/allData/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/allData/{mrn}?startdate=&enddate="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AllDataApi;

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

public class AllDataApiExample {

    public static void main(String[] args) {
        
        AllDataApi apiInstance = new AllDataApi();
        String mrn = mrn_example; // String | 
        String startdate = startdate_example; // String | 
        String enddate = enddate_example; // String | 
        try {
            apiInstance.getDocument(mrn, startdate, enddate);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllDataApi#getDocument");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AllDataApi;

public class AllDataApiExample {

    public static void main(String[] args) {
        AllDataApi apiInstance = new AllDataApi();
        String mrn = mrn_example; // String | 
        String startdate = startdate_example; // String | 
        String enddate = enddate_example; // String | 
        try {
            apiInstance.getDocument(mrn, startdate, enddate);
        } catch (ApiException e) {
            System.err.println("Exception when calling AllDataApi#getDocument");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 
String *startdate = startdate_example; //  (optional)
String *enddate = enddate_example; //  (optional)

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

[apiInstance getDocumentWith:mrn
    startdate:startdate
    enddate:enddate
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.AllDataApi()

var mrn = mrn_example; // {String} 

var opts = { 
  'startdate': startdate_example, // {String} 
  'enddate': enddate_example // {String} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.getDocument(mrn, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getDocumentExample
    {
        public void main()
        {
            
            var apiInstance = new AllDataApi();
            var mrn = mrn_example;  // String | 
            var startdate = startdate_example;  // String |  (optional) 
            var enddate = enddate_example;  // String |  (optional) 

            try
            {
                apiInstance.getDocument(mrn, startdate, enddate);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AllDataApi.getDocument: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\AllDataApi();
$mrn = mrn_example; // String | 
$startdate = startdate_example; // String | 
$enddate = enddate_example; // String | 

try {
    $api_instance->getDocument($mrn, $startdate, $enddate);
} catch (Exception $e) {
    echo 'Exception when calling AllDataApi->getDocument: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AllDataApi;

my $api_instance = WWW::SwaggerClient::AllDataApi->new();
my $mrn = mrn_example; # String | 
my $startdate = startdate_example; # String | 
my $enddate = enddate_example; # String | 

eval { 
    $api_instance->getDocument(mrn => $mrn, startdate => $startdate, enddate => $enddate);
};
if ($@) {
    warn "Exception when calling AllDataApi->getDocument: $@\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.AllDataApi()
mrn = mrn_example # String | 
startdate = startdate_example # String |  (optional)
enddate = enddate_example # String |  (optional)

try: 
    api_instance.get_document(mrn, startdate=startdate, enddate=enddate)
except ApiException as e:
    print("Exception when calling AllDataApi->getDocument: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required
Query parameters
Name Description
startdate
String
enddate
String

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


DataCategory

getCarePlan

Includes Assessment / Plan of Treatment, Goals, Health Concerns


/careplan/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/careplan/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getCarePlan(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getCarePlan");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getCarePlan(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getCarePlan");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Includes Assessment / Plan of Treatment, Goals, Health Concerns
[apiInstance getCarePlanWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getCarePlanExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Includes Assessment / Plan of Treatment, Goals, Health Concerns
                apiInstance.getCarePlan(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getCarePlan: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getCarePlan($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getCarePlan: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getCarePlan(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getCarePlan: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Includes Assessment / Plan of Treatment, Goals, Health Concerns
    api_instance.get_care_plan(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getCarePlan: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getCareTeam

Care Team Members


/careteam/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/careteam/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getCareTeam(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getCareTeam");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getCareTeam(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getCareTeam");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Care Team Members
[apiInstance getCareTeamWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getCareTeamExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Care Team Members
                apiInstance.getCareTeam(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getCareTeam: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getCareTeam($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getCareTeam: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getCareTeam(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getCareTeam: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Care Team Members
    api_instance.get_care_team(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getCareTeam: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getImmunizations

Immunizations


/immunizations/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/immunizations/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getImmunizations(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getImmunizations");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getImmunizations(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getImmunizations");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Immunizations
[apiInstance getImmunizationsWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getImmunizationsExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Immunizations
                apiInstance.getImmunizations(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getImmunizations: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getImmunizations($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getImmunizations: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getImmunizations(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getImmunizations: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Immunizations
    api_instance.get_immunizations(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getImmunizations: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getLabs

Laboratory Tests, Results / Values


/labs/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/labs/{mrn}?startdate=&enddate="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        String startdate = startdate_example; // String | 
        String enddate = enddate_example; // String | 
        try {
            apiInstance.getLabs(mrn, startdate, enddate);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getLabs");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        String startdate = startdate_example; // String | 
        String enddate = enddate_example; // String | 
        try {
            apiInstance.getLabs(mrn, startdate, enddate);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getLabs");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 
String *startdate = startdate_example; //  (optional)
String *enddate = enddate_example; //  (optional)

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

// Laboratory Tests, Results / Values
[apiInstance getLabsWith:mrn
    startdate:startdate
    enddate:enddate
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 

var opts = { 
  'startdate': startdate_example, // {String} 
  'enddate': enddate_example // {String} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.getLabs(mrn, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getLabsExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 
            var startdate = startdate_example;  // String |  (optional) 
            var enddate = enddate_example;  // String |  (optional) 

            try
            {
                // Laboratory Tests, Results / Values
                apiInstance.getLabs(mrn, startdate, enddate);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getLabs: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 
$startdate = startdate_example; // String | 
$enddate = enddate_example; // String | 

try {
    $api_instance->getLabs($mrn, $startdate, $enddate);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getLabs: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 
my $startdate = startdate_example; # String | 
my $enddate = enddate_example; # String | 

eval { 
    $api_instance->getLabs(mrn => $mrn, startdate => $startdate, enddate => $enddate);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getLabs: $@\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.DataCategoryApi()
mrn = mrn_example # String | 
startdate = startdate_example # String |  (optional)
enddate = enddate_example # String |  (optional)

try: 
    # Laboratory Tests, Results / Values
    api_instance.get_labs(mrn, startdate=startdate, enddate=enddate)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getLabs: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required
Query parameters
Name Description
startdate
String
enddate
String

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getMedsAndAllergies

Includes Medications, Allergies


/medications/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/medications/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getMedsAndAllergies(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getMedsAndAllergies");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getMedsAndAllergies(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getMedsAndAllergies");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Includes Medications, Allergies
[apiInstance getMedsAndAllergiesWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getMedsAndAllergiesExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Includes Medications, Allergies
                apiInstance.getMedsAndAllergies(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getMedsAndAllergies: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getMedsAndAllergies($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getMedsAndAllergies: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getMedsAndAllergies(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getMedsAndAllergies: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Includes Medications, Allergies
    api_instance.get_meds_and_allergies(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getMedsAndAllergies: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getPatient

Includes Patient Name, Gender, Date of Birth, Race, Ethnicity, Preferred Language


/demographics/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/demographics/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getPatient(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getPatient");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getPatient(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getPatient");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Includes Patient Name, Gender, Date of Birth, Race, Ethnicity, Preferred Language
[apiInstance getPatientWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getPatientExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Includes Patient Name, Gender, Date of Birth, Race, Ethnicity, Preferred Language
                apiInstance.getPatient(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getPatient: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getPatient($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getPatient: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getPatient(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getPatient: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Includes Patient Name, Gender, Date of Birth, Race, Ethnicity, Preferred Language
    api_instance.get_patient(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getPatient: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getProblems

Includes Problems, Smoking Status, Procedures, Implantable Devices


/problems/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/problems/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getProblems(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getProblems");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getProblems(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getProblems");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Includes Problems, Smoking Status, Procedures, Implantable Devices
[apiInstance getProblemsWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getProblemsExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Includes Problems, Smoking Status, Procedures, Implantable Devices
                apiInstance.getProblems(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getProblems: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getProblems($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getProblems: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getProblems(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getProblems: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Includes Problems, Smoking Status, Procedures, Implantable Devices
    api_instance.get_problems(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getProblems: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)


getVitals

Vital Signs


/vitals/{mrn}

Usage and SDK Samples

curl -X GET "https://localhost:9092/csp/user/vitals/{mrn}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DataCategoryApi;

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

public class DataCategoryApiExample {

    public static void main(String[] args) {
        
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getVitals(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getVitals");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DataCategoryApi;

public class DataCategoryApiExample {

    public static void main(String[] args) {
        DataCategoryApi apiInstance = new DataCategoryApi();
        String mrn = mrn_example; // String | 
        try {
            apiInstance.getVitals(mrn);
        } catch (ApiException e) {
            System.err.println("Exception when calling DataCategoryApi#getVitals");
            e.printStackTrace();
        }
    }
}
String *mrn = mrn_example; // 

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

// Vital Signs
[apiInstance getVitalsWith:mrn
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var CoreClinicalDataSet = require('core_clinical_data_set');

var api = new CoreClinicalDataSet.DataCategoryApi()

var mrn = mrn_example; // {String} 


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

namespace Example
{
    public class getVitalsExample
    {
        public void main()
        {
            
            var apiInstance = new DataCategoryApi();
            var mrn = mrn_example;  // String | 

            try
            {
                // Vital Signs
                apiInstance.getVitals(mrn);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DataCategoryApi.getVitals: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DataCategoryApi();
$mrn = mrn_example; // String | 

try {
    $api_instance->getVitals($mrn);
} catch (Exception $e) {
    echo 'Exception when calling DataCategoryApi->getVitals: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DataCategoryApi;

my $api_instance = WWW::SwaggerClient::DataCategoryApi->new();
my $mrn = mrn_example; # String | 

eval { 
    $api_instance->getVitals(mrn => $mrn);
};
if ($@) {
    warn "Exception when calling DataCategoryApi->getVitals: $@\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.DataCategoryApi()
mrn = mrn_example # String | 

try: 
    # Vital Signs
    api_instance.get_vitals(mrn)
except ApiException as e:
    print("Exception when calling DataCategoryApi->getVitals: %s\n" % e)

Parameters

Path parameters
Name Description
mrn*
String
Required

Responses

Status: 200 - (Expected Result)

Status: default - (Unexpected Error)