Ordering your first test
Learn how to order a test kit in a few simple steps
1. Explore Product Types
curl --location --request GET \
'https://vantage-sandbox.tryterra.co/api/v1/products/' \
--header 'Authorization: Basic <YOUR_CLIENT_ID:YOUR_CLIENT_SECRET_BASE64>'
import requests
url = "https://vantage-sandbox.tryterra.co/api/v1/products/"
headers = {
'Authorization': 'Basic <YOUR_CLIENT_ID:YOUR_CLIENT_SECRET_BASE64>'
}
response = requests.get(url, headers=headers)
print(response.text)
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
url := "https://vantage-sandbox.tryterra.co/api/v1/products/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <YOUR_CLIENT_ID:YOUR_CLIENT_SECRET_BASE64>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
[
{
"description": "Diagnostic blood panels and biomarker tests",
"id": 1,
"name": "Blood Test"
}
]
2. Explore Products within each product type
3. Explore Product Variants within each Product
4. Order a test kit
5. Receiving Webhooks - Verification of Receipt
6. Relax and wait for your new kit 🎉
Last updated
Was this helpful?