API Beginner Guide
API Introduction
Prerequisites
Authentication
Emedgene Domain users - https://<hostname>.emedgene.com
route_login_platform = 'https://<hostname>.emedgene.com/api/auth/v2/api_login/'
payload = {"username": user_name, "password": password}
response = requests.post(route_login_platform, json=payload)
access_token = response.json().get('access_token')
token_type = response.json().get('token_type')
print(f'{token_type.capitalize()} {access_token}')Illumina Domain users - https://<hostname>.emg.illumina.com
API Reference
Creating Python requests from curl
Examples
Get list of cases
Checking the response
Get list of storage providers
Create new case
Check the status of a case
Get more information about a case
Get candidates of completed case
Last updated
Was this helpful?
