This API is designed for external users to submit new jobs to the Bitgenia platform, link external codes with Bitgenia codes, and track the status of previously submitted jobs.
The base URL is https://bitgeniatestadn.com
All requests done to this API must include an API key in the header. The API key is provided by Bitgenia and is unique to each user. The API key must be included in the header as follows: X-API-Key: <API_KEY>
This operation creates a new kit and links it under the specified external_kit_id.
New kit to be added to the database.
| external_kit_id | string non-empty Your own kit ID for this sample |
{- "external_kit_id": "MyLabSample-123"
}{- "status": "SUBMITTED",
- "external_kit_id": "MyLabSample-123",
- "kit_id": "EXT2873696BT"
}This operation renames the external_kit_id of the given kit_id.
Kit to be renamed.
| kit_id | string non-empty The kit ID of the sample |
| external_kit_id | string non-empty Your own kit ID for this sample |
{- "kit_id": "EXT2873696BT",
- "external_kit_id": "RenamedSample-33"
}{- "status": "SUBMITTED",
- "external_kit_id": "RenamedSample-33",
- "kit_id": "EXT2873696BT"
}This operation retrieves details and status of the specified external_kit_id.
| external_kit_id required | string Your own kit ID for this sample |
{- "status": "IN_PROGRESS",
- "external_kit_id": "MyLabSample-123",
- "kit_id": "EXT2873696BT"
}