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 |
List<Association> getIndividual(id)
Returns list of matches
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.IndividualApi;
IndividualApi apiInstance = new IndividualApi();
String id = "id_example"; // String |
try {
List<Association> result = apiInstance.getIndividual(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling IndividualApi#getIndividual");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
id | String |
No authorization required
- Content-Type: application/json
- Accept: application/json
List<Association> getPedigree(id)
Returns list of matches
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.IndividualApi;
IndividualApi apiInstance = new IndividualApi();
String id = "id_example"; // String |
try {
List<Association> result = apiInstance.getPedigree(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling IndividualApi#getPedigree");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
id | String |
No authorization required
- Content-Type: application/json
- Accept: application/json