wegene-get-report
Retrieve a specific genetic test report from a user profile by providing the required report endpoint, report ID, and profile ID. Facilitates access to genetic data through API integration.
Instructions
Get a specific genetic test report from a profile
Input Schema
Name | Required | Description | Default |
---|---|---|---|
profile_id | Yes | The ID of the profile | |
report_endpoint | Yes | The endpoint of the report | |
report_id | Yes | The ID of the report |
Input Schema (JSON Schema)
{
"properties": {
"profile_id": {
"description": "The ID of the profile",
"type": "string"
},
"report_endpoint": {
"description": "The endpoint of the report",
"type": "string"
},
"report_id": {
"description": "The ID of the report",
"type": "string"
}
},
"required": [
"report_endpoint",
"report_id",
"profile_id"
],
"type": "object"
}