All URIs are relative to https://localhost/api
Method | HTTP request | Description |
---|---|---|
getIndividual | GET /individual/{id} | Returns list of matches |
getPedigree | GET /individual/pedigree/{id} | Returns list of matches |
[Association] getIndividual(id)
Returns list of matches
var BioLinkApi = require('bio_link_api');
var apiInstance = new BioLinkApi.IndividualApi();
var id = "id_example"; // String |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getIndividual(id, callback);
Name | Type | Description | Notes |
---|---|---|---|
id | String |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Association] getPedigree(id)
Returns list of matches
var BioLinkApi = require('bio_link_api');
var apiInstance = new BioLinkApi.IndividualApi();
var id = "id_example"; // String |
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getPedigree(id, callback);
Name | Type | Description | Notes |
---|---|---|---|
id | String |
No authorization required
- Content-Type: application/json
- Accept: application/json