The Lumminary API was built to allow third parties to interact with Lumminary customers and gain access to their genetic data. The Lumminary API is fast, scalable and highly secure. All requests to the Lumminary API take place over SSL, which means all communication of Customer data is encrypted.
Before we dive in, some definitions. This is what we mean by:
Term | Definition |
---|---|
Third party | A third party (also referred to as “partner” or as “you”) is a company which offers services and products using genetic data. |
Lumminary clients | The Lumminary client (also referred to as “customer”) is an individual who has created an account on the Lumminary platform. |
Lumminary | This is us - our services including the Lumminary platform, the API, the DNA App Store, the DNA Vault, the “Connect with Lumminary” button, and the website in its totality. |
CWL | This is the acronym for the “Connect with Lumminary” button. |
dataset | This is the term we use when we refer to a customer’s genetic data. |
Lumminary API | This is a library/module that you can use to integrate your apps with the Lumminary platform. |
Lumminary toolkit | This is a stand alone application which helps you integrate with Lumminary without writing any code or interacting with the Lumminary API. |
Let’s dive in, now.
In order to use Lumminary services, you’ll need to install the Lumminary API Client or Toolkit. The Lumminary API Client and Toolkit are available in multiple programming languages, and we also provide a sandbox environment which you can use for integration and tests.
There are a couple of differences between the API Client and the Toolkit. Mainly, it’s about the ease of use for integration. The Toolkit is basically a stand-alone application that facilitates the integration with the Lumminary API without the need to modify your already existing code.
You use the Lumminary API Client when you want to integrate it inside your own application. This means it gives you full flexibility regarding the integration into your own workflow.
You use the Lumminary Toolkit for an integration where the Toolkit is placed alongside your own application. You can use the Toolkit from the CLI - for example, to run a cronjob that processes incoming orders. The Toolkit uses the Lumminary API Client.
We provide the Lumminary API Client and Toolkit in multiple programming languages - default are PHP (minimum version 7.0), Python2.7 and Python3. However, if you need them in another language (Java, Obj-C, JavaScript, C#, Perl, CURL), please contact us.
The PHP Lumminary API Client is available at: https://github.com/Lumminary/lumminary-api-client-php
If you are already using Composer, you can import the project by adding the following to your composer.json
"repositories": [
{
"type": "git",
"url": "https://github.com/Lumminary/lumminary-api-client-php.git",
"reference": "master"
}
],
"require": {
"lumminary/api-client-php": "v1.0.6"
}
Then run composer update lumminary/api-client-php
The Python Lumminary API Client is available at: https://github.com/Lumminary/lumminary-api-client-python
To install directly, run
pip install git+https://git@github.com/Lumminary/lumminary-api-client-python.git@v1.0.7#egg=lumminary-api-client
Or add the following line in your requirements.txt
git+https://git@github.com/Lumminary/lumminary-api-client-python.git@v1.0.7#egg=lumminary-api-client
The PHP Lumminary Toolkit is available at: https://github.com/Lumminary/lumminary-toolkit-php
To install the Lumminary Toolkit, run the following command where ’lumminary-toolkit-directory’ is the directory where you want to install the Lumminary Toolkit:
git clone git@github.com:Lumminary/lumminary-toolkit-php.git lumminary-toolkit-directory
The Python Lumminary Toolkit is available at: https://github.com/Lumminary/lumminary-toolkit-python
To install the Lumminary Toolkit, run the following command where ’lumminary-toolkit-directory’ is the directory where you want to install the Lumminary Toolkit:
git clone git@github.com:Lumminary/lumminary-toolkit-python.git lumminary-toolkit-directory
cd lumminary-toolkit-directory
virtualenv env
source env/bin/activate
pip install -r requirements.txt
Note that before running the toolkit, you should have the virtualenv enabled, like so : source lumminary-toolkit-directory/env/bin/activate
We recommend to run the Toolkit in a cronjob; at every run it will check for new Authorizations (Orders) and will download them; afterwards it will check for a new reports folder inside the old authorizations, process the reports, and delete the processed Authorizations and Reports from your server.
The first step after you clone the Lumminary Toolkit project for your language is to configure it with your credentials.
Go to the Lumminary Toolkit base diretory cd lumminary-toolkit-directory
. Under the Toolkit directory, you will find a file config/config_template.json
which has the following structure:
{
"api_key": <your-api-key>,
"product_uuid": <your-product-uuid>,
"api_host": "https:\/\/api.lumminary.com\/v1",
"output_root": <your-authorization-data-basepath>,
"export_handler": <your-export-handler-class>,
"product_name": <your-product-name>,
"operations": [
"pull_datasets",
"push_reports"
],
"optional": {
"dna_data_filename": "dna-data.tsv",
"authorization_metadata_filename": "authorization-metadata.json"
}
}
You should copy this config cp config/config_template.json config/my-product1-config.json
then edit it vim config/my-product1-config.json
to contain the following values:
Config attribute | Example Value | Description |
---|---|---|
api_key | "TiiU...bqg==" | Your Lumminary API key. You can obtain it from the Lumminary Admin |
product_uuid | "1234-1234-1234-1234" | Your product UUID. This value can be obtained from the Lumminary Admin |
api_host | "https:\/\/api.lumminary.com\/v1" | The API endpoint to use. For the sandbox environment you can use “https://sandbox-api.lumminary.com/v1” |
output_root | "/var/lumminary-orders/product1/" | The base directory where the Toolkit places the Authorizations for your Product The Lumminary Toolkit will never overwrite Authorization data or create this directory, to protect from overwrites or typos |
export_handler | "export_handler_tsv" | If you have a custom export handler, then your Lumminary contact will provide you with the name of your export handler. |
operations | ["pull_datasets", "push_reports"] | These are two optional parameters that define the tasks that the Toolkit should perform. Possible values are: 1. pull_datasets - this tells the Toolkit to download the Customer Authorization (Customer details and genetic data)2. push_reports - this tells the Toolkit to push the results to the API; see below for more details |
optional | {} | Export handler specific value |
After updating the config file for your Toolkit, it should look similar to (Note that these are all dummy values) :
{
"api_key": "TiiU...bqg==",
"product_uuid": "1234-1234-1234-1234",
"api_host": "https:\/\/api.lumminary.com\/v1",
"output_root": "\/var\/lumminary-orders\/product1\/",
"export_handler": "export_handler_tsv",
"product_name": "product 1",
"operations": [
"pull_datasets",
"push_reports"
],
"optional": {
"dna_data_filename": "dna-data.tsv",
"authorization_metadata_filename": "authorization-metadata.json"
}
}
You can now save and exit the text editor :wq
and start polling the API for new Authorizations :
Python
# While still in the <lumminary-toolkit> directory
source env/bin/activate;
python lumminary_partner_toolkit.py --config-path config/my-lumminary-product1-config.json
PHP
# While still in the <lumminary-toolkit> directory
php lumminary-partner-toolkit.php --config-path config/my-lumminary-product1-config.json
When your Product receives new Authorizations, the Toolkit will pull all the relevant data and save it in the following files:
# The DNA data file. Format compatible with 23AndMe by default
<output_root>/<authorization_uuid>/dna-data.tsv
# The Authorization metadata
<output_root>/<authorization_uuid>/authorization.json
The contents of the files pulled when processing an Authorization are as follows:
$ head -n 5 <output_root>/<authorization_uuid>/dna-data.tsv
# rsid chromosome position genotype
rs12070387 1 6267531 CC
rs149124387 1 12025561 CC
rs116458387 1 14920119 AA
rs4436387 1 15498452 CC
$ cat <output_root>/<authorization_uuid>/authorization.json
{
"authorization": <authorization_uuid>,
"created_timestamp_utc": 1542920184,
"customer": <customer_uuid>,
"customer_address": {
"address1": <address1>,
"address2": <address2>,
"city": <city>,
"country": <country>,
"state": <state>,
"zipcode": <zipcode>
},
"customer_email": <customer_email>,
"customer_name": {
"first_name": <customer_first_name>,
"last_name": <customer_last_name>
},
"dataset": <dataset_uuid>,
"product": <your_product_uuid>
}
After the Toolkit downloaded the Authorizations, you need to process the Customer genetic data file and the Customer details, individually. The Lumminary API supports multiple types of products:
Scenario | How to Report |
---|---|
The product is a file (.pdf, .jpeg etc.) | Put the result file(s) into the tmp_reports directory. Please refer to the Note underneath this table. |
The product requires authentication | Create a file with the name result.json into the tmp_reports directory, with the following content:{ "credentials": { "username": "username@example.com", "password": "your generated password", "url": "https://your-website.com/report"}} The url should point to a login page that upon authentication redirects the user to the report page. You can find the customer’s email address in the authorization-metadata.json and the password attribute must be a secure password. Please refer to the Note underneath this table. |
The product is a physical product | Create a file with the name result.json into the tmp_reports directory, with the following content:{"physical_product": { "physical_product_completed": true }} This should be done upon dispatch. Please refer to the Note underneath this table. |
An error occurred | Create a file with the name result.json into the tmp_reports directory, with the following content:{ "unfulfillable": {"error": "Reasons for why it is unfulfillable", }} The error message is for Lumminary internal usage, and it won’t be visible to the customer. This will delete your Authorization, making it unuseable thereafter. So please use this only for unfixable errors, and never for temporary errors you attempt to resolve. Please refer to the Note underneath this table. |
For each scenario above, we recommend you use a temporary directory to avoid uploading incomplete files or reports. So your workflow should be:
<output_root>/<authorization_uuid>
, such as <output_root>/<authorization_uuid>/tmp_reports/
tmp_reports
directory (as in the above table)tmp_reports
to reports
We recommend running the Toolkit in a cronjob, wrapped by some locking mechanism. Also, Toolkit logs are very minimal but can be very helpful when debugging an issue, so please consider saving them to a file. For example, the following cronjob runs the Toolkit every minute:
# Open the crontab
crontab -e
PHP Toolkit
# Add the following line (replace <lumminary-toolkit-directory> with the absolute path of the Lumminary Toolkit)
* * * * * flock /var/lock/lumminary-toolkit.lock php <lumminary-toolkit-directory>/lumminary-partner-toolkit.php --config-path <lumminary-toolkit-directory>/config/my-product1-config.json >> /var/log/lumminary-toolkit.log
Python Toolkit
# Add the following line (replace <lumminary-toolkit-directory> with the absolute path of the Lumminary Toolkit)
* * * * * flock /var/lock/lumminary-toolkit.lock source env/bin/activate; python <lumminary-toolkit-directory>/lumminary_partner_toolkit.py --config-path <lumminary-toolkit-directory>/config/my-product1-config.json
Lumminary provides two endpoint APIs, sandbox and production. You can use the sandbox for your integration and testing, simulate orders, upload genetic data, and generate reports. The sandbox works exactly like the production environment, and you can test your end-to-end integration.
In order to simulate a complete order, you need to use this test credit card:
Credit card number | Expiration date | CVV2 |
---|---|---|
4242 4242 4242 4242 | 12/30 | 123 |
website: sandbox-www.lumminary.com
api-hostname: sandbox-api.lumminary.com/v1
website: lumminary.com
api-hostname: api.lumminary.com/v1
To obtain credentials, you need to register as a Lumminary partner. You can do this by filling in this form.
You will then receive the following:
Credentials | Description |
---|---|
Product UUID | Each product you register on the Lumminary platform gets an UUID which will be used to identify that product to the Lumminary API |
API key | The secret API key associated with the Product UUID |
Partner UUID | Upon your first registration on the Lumminary platform, you will receive a single Partner UUID, which identifies you as one entity, regardless of product. This identifier is used for the Connect with Lumminary (CWL) functionality. |
CWL Encryption Key | The CWL encryption key is associated with the Partner UUID and is used to encrypt all communication for the Connect with Lumminary functionality. |
Each product or service needs to have its own product UUID and API key, which means you have to fill in the form for all products and services that require access to Lumminary customer data.
The easiest way to set up your credentials is to use an environment file.
For this, you must create a file named env.json
(but any name will do) in your project directory, which should contain:
{
"product_uuid": <your_product_uuid>,
"api_key": <your_product_api_key>,
"role": "role_product",
"api_host": <lumminary_api_hostname_endpoint>
}
In order to load the Credentials from the env.json
, you can use the following code:
require_once(__DIR__."/vendor/autoload.php");
$credentials = new Lumminary\Client\Credentials();
$credentials->loadJSONCredentials(__DIR__."/env.json");
import lumminary_sdk as lumminary
import os
credentials = lumminary.Credentials()
credentials.load_json_credentials(
os.path.join(
os.getcwd(),
"env.json"
)
)
You also have the option of passing the credentials as constructor parameters when instantiating the Credentials
class.
require_once(__DIR__."/vendor/autoload.php");
$credentials = new Lumminary\Client\Credentials(
<lumminary_api_hostname_endpoint>,
<your_product_uuid>,
<your_product_api_key>
);
import lumminary_sdk as lumminary
credentials = lumminary.Credentials(
product_uuid = <your_product_uuid>,
api_key = <your_product_api_key>,
api_host = <lumminary_api_hostname_endpoint>,
role = "role_product"
)
With the credentials configured and loaded, you can create an API client like so :
$apiClient = new Lumminary\Client\ApiClient($credentials);
apiClient = lumminary.LumminaryApi(credentials)
An Authorization represents permission from a client to access their personal and genetic data.
There are 2 situations where customers grant you access to their data:
Each time either of the above situations happens, our platform creates an Authorization UUID. You can reliably assume that if you have an Authorization UUID, you automatically have access to all the personal information and genetic data needed by your products and services. After you process an Authorization you need to mark it as processed; processed Authorizations will no longer be on the list of new authorizations.
There are two ways to obtain the Authorization UUID:
To use the polling method, your servers periodically interrogate for new Authorization UUIDs. Please keep in mind that Authorizations not marked as processed will always be returned when polling for new Authorizations. This means there’s a risk of parallel processing the same Authorization. To avoid this, you can, for example, consider using locking when processing.
$productAuthorizations = $apiClient->getAuthorizationsQueue(
$apiClient->getCredentials()->getProductUuid(),
);
foreach($productAuthorizations as $productAuthorization)
{
/**
* Add your code for processing customer data here
**/
// Mark Authorization as processed
$apiClient->postProductAuthorization(
$productAuthorization["productUuid"],
$productAuthorization["authorizationUuid"]
);
}
productAuthorizations = apiClient.get_authorizations_queue(
apiClient.get_credentials().product_uuid
)
for productAuthorization in productAuthorizations:
#######
# Add your code for processing customer data here
#######
# Mark Authorization as processed
apiClient.post_product_authorization(
productAuthorization.product_uuid,
productAuthorization.authorization_uuid
)
Based on the Authorization object obtained previously, we can now query the customer’s information (personal details and genetic data).
$authorizationMetadata = $apiClient->authorizationMetadata($productAuthorization["authorizationUuid"]);
authorizationMetadata = apiClient.authorization_metadata(productAuthorization.authorization_uuid)
Attribute name | Description |
---|---|
customer | The UUID of the customer granting the Authorization |
product | The UUID of the product that was authorized (your product UUID) |
authorization | The UUID of the granted Authorization. |
created_timestamp_utc | The unix timestamp in UTC time zone when the customer granted the Authorization |
dataset | (present only if requested) The UUID of the dataset authorized by the customer |
customer_email | (present only if requested) Customer contact email |
customer_name | (present only if requested) Customer name |
customer_address | (present only if requested) Customer address |
By present only if requested we mean this attribute will be returned if at the time of configuring either the “Connect with Lumminary” button or your product, you have explicitly requested for that particular set of data.
Based on the Authorization object obtained previously, now we have authorizationMetadata which contains the customer’s information (personal details and genetic data). Let’s use this information to extract some customer genetic data.
Out of all the available SNPs in the dataset, you can only access those for which the customer has previously granted permission.
For example, fetching details for a particular SNP:
$rsId = "rs114326054";
$snpDetails = null;
// check to see if you have access to the customer genetic data
if (isset($productAuthorization["scopes"]["dataset"]))
{
// get SNP information
$snpDetails = $apiClient->getClientSnp(
$productAuthorization["clientUuid"],
$productAuthorization["scopes"]["dataset"],
$rsId
);
}
rsId = "rs114326054"
snpDetails = None
# check to see if you have access to the customer genetic data
if hasattr(productAuthorization.scopes, "dataset"):
# get SNP information
snpDetails = apiClient.get_client_snp(
productAuthorization.client_uuid,
productAuthorization.scopes.dataset,
rsId
)
Attribute name PHP | Attribute name Python | Description |
---|---|---|
snpId | snp_id | The rsid of the SNP |
referenceGenome | reference_genome | The reference genome known to be used by the Dataset’s source. This impacts the reference allele, location, and based on the dbSNP build, also the SNP’s accession |
genotypedAlleles | genotyped_alleles | The genotype value of the customer’s queried SNP. If the attribute of this SNP has the phased flag set to True,the first items in the lists for all SNPs will be on the same inherited chromosome, and analogous for the second item. If the SNP is unphased, the order of the items is irrelevant |
phased | phased | A boolean. True if the SNP is known to be phased, False otherwise |
chromosomeAccession | chromosome_accession | This is the chromosome accession number where the SNP is located; in the format of NC_00x |
location | location | This is the customer’s SNP’s location on the chromosome |
When trying to access any customer’s SNP for which you don’t have permission, an Unauthorized
exception will be raised.
The function below returns all SNPs your product has access to. These are all the SNPs configured as mandatory for your product, as well as all SNPs that are configured as optional and available in the customer’s data set. We encourage you to use this option if you need to get all available SNPs, because it is faster than fetching SNP details one by one.
For example, fetching all authorized SNPs:
$datasetSnps = null;
// check to see if you have access to the customer genetic data
if (isset($productAuthorization["scopes"]["dataset"]))
{
// get all authorized SNPs
$datasetSnps = $apiClient->getClientSnpGroup(
$productAuthorization["clientUuid"],
$productAuthorization["scopes"]["dataset"]
);
}
datasetSnps = None
# check to see if you have access to the customer genetic data
if hasattr(productAuthorization.scopes, "dataset"):
# get all authorized SNPs
datasetSnps = apiClient.get_client_snp_group(
productAuthorization.client_uuid,
productAuthorization.scopes.dataset
)
Attribute name PHP | Attribute name Python | Description |
---|---|---|
snpId | snp_id | The rsid of the SNP |
referenceGenome | reference_genome | The reference genome known to be used by the Dataset’s source. This impacts the reference allele, location, and based on the dbSNP build, also the SNP’s accession |
genotypedAlleles | genotyped_alleles | The genotype value of the customer’s queried SNP. If the attribute of this SNP has the phased flag set to True,the first items in the lists for all SNPs will be on the same inherited chromosome, and analogous for the second item. If the SNP is unphased, the order of the items is irrelevant |
phased | phased | A boolean. True if the SNP is known to be phased, False otherwise |
chromosomeAccession | chromosome_accession | This is the chromosome accession number where the SNP is located; in the format of NC_00x |
location | location | This is the customer’s SNP’s location on the chromosome |
When trying to access any customer’s SNP for which you don’t have permission, an Unauthorized
exception will be raised.
Along with individual SNPs, you can also get all the authorized SNPs from a particular gene, that are available in the customer’s dataset.
Here, by genes, we refer strictly to the genomic region that produces some protein, without considering regulatory or noncoding regions that influence gene expression.
The gene name (known as symbol) can be from either of these two databases - NCBI and Ensembl.
For example, fetching details for a gene symbol:
$geneSymbol = "C1ORF159";
$geneDetails = null;
// check to see if you have access to the customer genetic data
if (isset($productAuthorization["scopes"]["dataset"]))
{
// get all authorized SNPs within a gene
$geneDetails = $apiClient->getClientGene(
$productAuthorization["clientUuid"],
$productAuthorization["scopes"]["dataset"],
$geneSymbol
);
}
geneSymbol = "C1ORF159"
geneDetails = None
# check to see if you have access to the customer genetic data
if hasattr(productAuthorization.scopes, "dataset"):
# get all authorized SNPs within a gene
geneDetails = apiClient.get_client_gene(
productAuthorization.client_uuid,
productAuthorization.scopes.dataset,
geneSymbol
)
Attribute name PHP | Attribute name Python | Description |
---|---|---|
molecularLocation | molecular_location | An object containing the location of the gene within the chromosome - see below the molecular location object structure |
snps | snps | A list of SNP objects present in the gene - see below the SNP object structure |
symbol | symbol | The gene’s accession string (name) |
Attribute name PHP | Attribute name Python | Description |
---|---|---|
chromosomeAccession | chromosome_accession | The scaffold/chromosome on which the gene is placed |
start | start | The gene’s start position on the scaffold |
stop | stop | The gene’s stop position on the scaffold |
Attribute name PHP | Attribute name Python | Description |
---|---|---|
referenceGenome | reference_genome | The reference genome known to be used by the Dataset’s source. This impacts the reference allele, location, and based on the dbSNP build, also the SNP’s accession |
genotypedAlleles | genotyped_alleles | The genotype value of the customer’s queried SNP. If the attribute of this SNP has the phased flag set to True,the first items in the lists for all SNPs will be on the same inherited chromosome, and analogous for the second item. If the SNP is unphased, the order of the items is irrelevant |
phased | phased | A boolean. True if the SNP is known to be phased, False otherwise |
chromosomeAccession | chromosome_accession | This is the chromosome accession number where the SNP is located; in the format of NC_00x |
location | location | This is the customer’s SNP’s location on the chromosome |
If your platform is already compatible with 23andMe genotype data files, you can use this specific function to generate data in the 23andMe format - list of rows in tab separated values.
$authorizationDnaData = $apiClient->authorizationDnaData($productAuthorization["authorizationUuid"]);
authorizationDnaData = apiClient.authorization_dna_data(productAuthorization.authorization_uuid)
authorizationDnaData
contains a list of rows in a tsv (tab delimited values)/csv format (23andme-compatible)
After you finish analysing the customer’s genetic data, we need to inform the customer their analysis is complete. To do this, you will notify us using the function below. Finally, the customer will then:
When you submit such a report file, Lumminary will save this document into the customer’s account, from which the customer will then be able to access it directly.
$pathToReportFile = <path_to_report_file>;
$fileReport = new \SplFileObject($pathToReportFile);
$friendlyFileName = "report_file_name"; //optional, give a friendly name to your report file
$apiClient->postAuthorizationResultFile(
$productAuthorization["productUuid"],
$productAuthorization["authorizationUuid"],
$fileReport,
$friendlyFileName
);
pathToReport = <path_to_report_file>
originalFilename = "report_file_name" #optional, give a friendly name to your report file
apiClient.post_authorization_result_file(
productAuthorization.product_uuid,
productAuthorization.authorization_uuid,
pathToReport,
originalFilename
)
If you need to upload multiple files, you have to call the function for each file, one at a time.
If the customer’s results can be accessed on your website, you will need to create a customer account on your platform, generating a user and password which will be sent through the Lumminary API into the customer’s Lumminary account.
In case you don’t generate a user and a password for the customer to access their report, use the function below with “null” value to username and password. We recommend you use the URL for customer reports on a dedicated page for reports only, rather than your homepage or some other generic page.
$apiClient->postAuthorizationResultCredentials(
$productAuthorization["productUuid"],
$productAuthorization["authorizationUuid"],
<username_generated_by_you>, //optional, default null
<password_generated_by_you>, //optional, default null
<report_on_your_website_url> // https://partnerwebsite.com/reports.php?reportid=a7508
);
apiClient.post_authorization_result_credentials(
productAuthorization.product_uuid,
productAuthorization.authorization_uuid,
<username_generated_by_you>, # optional, default null
<password_generated_by_you>, # optional, default null
<report_on_your_website_url> # https://partnerwebsite.com/reports.php?reportid=a7508
)
In case you only send the customer a physical product and you don’t generate any reports, you need to run the function below so we can mark the order as fulfilled and can inform the client.
$apiClient->postProductAuthorization(
$productAuthorization["productUuid"],
$productAuthorization["authorizationUuid"]
);
apiClient.post_product_authorization(
productAuthorization.product_uuid,
productAuthorization.authorization_uuid
)
The “Connect with Lumminary” functionality allows you to get customer details and genetic data from the Lumminary platform for free, anytime you want, for as long the customer grants you access. This functionality offers your customers the option to share their genetic data and other personal information (e.g. name, address, email etc.) stored on the Lumminary platform.
Having this button on your website makes it very easy for the customer to share their genetic data with you, as they don’t have to download and re-upload their data on your site. The customer always has the option to revoke your access to both their personal details and their genetic data.
To protect the customer's privacy, you are not allowed to save their data anywhere. You can, however, always access their data on the Lumminary platform, for as long as they grant you access. If you generate a report based on customer data, you are allowed to save that report on your platform.
In order to implement this functionality on your website, this is what you need to know:
If you’re new to the Lumminary platform and don’t already have any products in the DNA App Store, then you need to register by filling in this form.
You have to fill in the form for all products and services that require access to Lumminary customers’ genetic data.
Since the CWL flow involves encrypting and decrypting data, we recommend installing the Lumminary API Client, where you’ll find some specific helper functions.
In order to enable the button, you have to include the following script in the <head>
tag of all the pages where you want to enable the “Connect with Lumminary” button:
<head>
<script defer src="https://lumminary.com/cwl/cwl.js"></script>
</head>
The Javascript creates a CSRF token and attaches it to the button to be transmitted and verified on our servers each time a user clicks on the button. The CSRF token expires after 5 minutes. In case the CSRF token is expired or tampered, the user will be redirected to your website where it’s up to you to decide what to do next - reload the page with the button or show the customer an error message.
The cwl.js
file is loaded as a deferred resource, which means that it will load after all the webpage code execution has been finished, so it will not have any impact on your website load speed.
There are two type of buttons, so you can pick one that matches your branding. The buttons are SVG images, which means that you can scale them up or down to fit your design, without compromising on image quality. You can do this by changing the image height.
<a class="lumminary-connect-btn" data-partner-uuid="<partner-UUID>" data-request="<request>" style="cursor:pointer; text-decoration:none;" href="https://lumminary.com">
<img src="https://lumminary.com/cwl/connect-with-lumminary-white.svg" alt="Lumminary DNA tests" height="50" title="Connect with Lumminary"/>
</a>
<a class="lumminary-connect-btn" data-partner-uuid="<partner-UUID>" data-request="<request>" style="cursor:pointer; text-decoration:none;" href="https://lumminary.com">
<img src="https://lumminary.com/cwl/connect-with-lumminary-black.svg" alt="Lumminary DNA tests" height="50" title="Connect with Lumminary"/>
</a>
Each button has 2 attributes which need to be configured:
The data-request object has a standard format which needs to be preserved. It is formed of two types of data, some mandatory and some optional. You can use the optional fields to add any metadata or other information for your own use. The data-request object is going to be returned with the response from the authentication without being altered.
The mandatory information is a list of scopes which you ask the client to grant permission for. These scopes are comma delimited, and the possible options are: address
, email
, dataset
.
The scopes address, email, and dataset can be used in any combination; you must request at least one scope.
Attribute name | Description |
---|---|
address | Requests access to a customer’s name and address. |
email | Requests access to a customer’s email address. |
dataset | Requests access to a customer’s genetic data |
$objAuthorizationRequest ["scopes"] = "address,dataset,email";
objAuthorizationRequest ["scopes"] = "address,dataset,email"
Product UUID is your productUuid
for which you ask customer permissions.
$objAuthorizationRequest["productUuid"] = $credentials->getProductUuid();
objAuthorizationRequest["productUuid"] = credentials.product_uuid
In the optional part of the object, you can add any useful data, such as customer ID, session ID, or any parameter which can help you identify the response from Lumminary.
$objAuthorizationRequest["customData"] = array();
$objAuthorizationRequest["customData"]["customerId"] = <partner-customer-id>;
$objAuthorizationRequest["customData"]["websiteSession"] = <customer-session>;
$objAuthorizationRequest["customData"]["customData3"] = <Some addional data>;
objAuthorizationRequest["customData"] = {}
objAuthorizationRequest["customData"]["customerId"] = <partner-customer-id>
objAuthorizationRequest["customData"]["websiteSession"] = <customer-session>
objAuthorizationRequest["customData"]["customData3"] = <Some addional data>
See below a complete example for a data-request object:
$objAuthorizationRequest["scopes"] = "address,dataset,email";
$objAuthorizationRequest["productUuid"] = <product-UUID>;
$objAuthorizationRequest["customData"] = array();
$objAuthorizationRequest["customData"]["customerId"] = <partner-customer-id>;
$objAuthorizationRequest["customData"]["websiteSession"] = <customer-session>;
$objAuthorizationRequest["customData"]["customData3"] = <Some addional data>;
objAuthorizationRequest = {}
objAuthorizationRequest["scopes"] = "address,dataset,email"
objAuthorizationRequest["productUuid"] = <product-UUID>
objAuthorizationRequest["customData"] = {}
objAuthorizationRequest["customData"]["customerId"] = <partner-customer-id>
objAuthorizationRequest["customData"]["websiteSession"] = <customer-session>
objAuthorizationRequest["customData"]["customData3"] = <Some addional data>
The previously generated object (objAuthorizationRequest
) will now need to be encrypted. In order to be able to encrypt the object and also query the Lumminary API to obtain the customer details and genetic data, you need to have the Lumminary API Client installed. If you haven’t done this already, please follow these steps.
After you have the Lumminary API Client installed correctly you can use the command below:
// You have recieved the CWL encryption key after filling in the form for product registration
$partnerCwlKey = <partner-encryption-key>;
$requestValueEncryptedUrlEncoded = Lumminary\Client\LumminaryApi::cwl_data_request_build(
$objAuthorizationRequest,
$partnerCwlKey
);
import lumminary_sdk as lumminary
# You have recieved the CWL encryption key after filling in the form for product
partnerCwlKey = <partner-encryption-key>
requestValueEncryptedUrlEncoded = lumminary.LumminaryApi.cwl_data_request_build(objAuthorizationRequest, partnerCwlKey)
The resulting string should be added in the data-request
attribute of the <a>
tag of the “Connect with Lumminary” button.
Add the data-partner-uuid
in the data-partner-uuid
attribute of the <a>
tag of the “Connect with Lumminary” button. You have received the partner UUID after filling in the form for product registration.
An example of a button correctly configured should look like this:
<a class="lumminary-connect-btn" data-partner-uuid="4231-7446-2543-6542" data-request="7LfMX811Als0l%2FAvf84pB7n3mcycnTjgWl1FaVNffdqiOApMn4HAnk0Ux6eatObfYmxf1xPRjo7nBojsL4ImgOL932NK2Ei4VoUXjs9Y%2BcvphI0kxBSblLaeVXNPbJO9LsuNP%2BHJzDBAnZZdAObgYxHH2QDY3VD%2Ff%2FBXKw9WYDdBssAoegMFEJ9GgYutFQ4nTPXAt%2FdWCqoxYbZrYpCj2Pphk9lstc4Ib%2BLNxKiEtNCmVGr6sgmR2lPBwgylTsEX%2FMRCJb6sdQyZBhvSQCMFb0p3%2B9tEwV0%3D" style="cursor:pointer; text-decoration:none;" href="https://lumminary.com">
<img src="https://lumminary.com/cwl/connect-with-lumminary-white.svg" alt="Lumminary DNA tests" height="50" title="Connect with Lumminary">
</a>
When a customer clicks on the “Connect with Lumminary” button, a pop-up window opens. After they choose which genetic file to share, the pop-up will automatically close and the user will be redirected to your callback URL in the parent window. Your callback URL needs to be predefined in the Lumminary partner portal.
The GET request from the client to your callback URL will contain two querystring parameters - request
and response
:
request
– this is exactly the same request that you previously sent in the data-request
field. You can decrypt it with the CWL encryption key which you used to encrypt it.response
– the response is an urlencoded encrypted serialized JSON object which contains the Authorization UUID and the Authorization UTC unix timestamp. You will use the Authorization UUID to get the customer’s data with the Lumminary API Client. The response string is encrypted with your CWL encryption key, the same as the data-request
parameter.In order to decrypt the response
parameter, you can use the following function:
// the entire callback URL, including the querystring parameters
$callbackUrlWithPayload = "https://partnerwebsite.con/callback?request=...&response=...";
$cwlReturnObject = Lumminary\Client\LumminaryApi::cwl_url_query_extract(
$callbackUrlWithPayload,
$partnerCwlKey
);
// the entire callback URL, including the querystring parameters
callback_url_with_payload = "https://partnerwebsite.con/callback?request=...&response=..."
cwlReturnObject = apiClient.cwl_url_query_extract(
callback_url_with_payload,
partner_cwl_key
)
The cwlReturnObject
will now contain an object like the example below:
{
"request": <your-request-parameter-echoed>,
"response": {
"authorizationUuid": <cwl-authorization-uuid>,
"authorizationTimestamp": <cwl-authorization-created-timestamp>
}
}
With the Authorization UUID (authorizationUuid
) you can query all the customer details from the Lumminary platform.
When an error occurs, the customer is redirected to your callback URL. The redirect contains two querystring parameters - request
and response
- exactly like a regular response, but the response
parameter contains an error object (see below) instead of an Authorization object.
// the entire callback url, including the querystring parameters
$callbackUrlWithPayload = "https://partnerwebsite.con/callback?request=...&response=...";
$cwlReturnObject = Lumminary\Client\LumminaryApi::cwl_url_query_extract(
$callbackUrlWithPayload,
$partnerCwlKey
);
# the entire callback url, including the querystring parameters
callback_url_with_payload = "https://partnerwebsite.con/callback?request=...&response=..."
cwlReturnObject = apiClient.cwl_url_query_extract(
callback_url_with_payload,
partner_cwl_key
)
Example of a return object (cwlReturnObject
) containing an error message:
{
"request": <your-request-parameter-echoed>,
"response": {
"error": {
"id": <error id>,
"message": <error message>
}
}
}
Error Id | Error Message |
---|---|
1 | Invalid Security Token |
2 | Invalid Access Scopes |
3 | Customer refuses your request (this happens when the customer cancels instead of granting access) |
Use this page to mock Lumminary API in your testing and development.
Run our mock API sample using the open source WireMock library, or in the free edition of WireMock Cloud. You'll have a working API server simulating the behavior of Lumminary API, which will allow you to keep building and testing even if the actual API you isn't currently available.