Managing orders
Track orders after placement: fetch full order detail with status history, list and filter orders and results, and curate which products your catalog returns.
Get one order
curl 'https://vantage-sandbox.tryterra.co/api/v1/orders/251285377984405504' \
-u 'YOUR_DEV_ID:YOUR_API_KEY'{
"order_id": "251285377984405504",
"client_id": "terra_client_abc123",
"client_order_reference_id": "TEST-ORDER-001",
"collection_type": "AT_HOME",
"order_status": "order.delivery_fulfilled",
"recipient": {
"id": "251285377984405505",
"first_name": "John",
"last_name": "Smith",
"email": "[email protected]",
"phone_number": "+14155551234",
"date_of_birth": "1995-10-10",
"gender_at_birth": "male"
},
"shipping_address": {
"address_line_1": "123 Market Street",
"city": "San Francisco",
"administrative_area": "CA",
"country_code": "US",
"postal_code": "94102"
},
"items": [
{
"order_id": "251285377984405504",
"order_item_id": "251285377984405507",
"variant_id": "100041",
"product_type_id": "1",
"price_per_item_cents": 7900,
"quantity": 1,
"currency": 840,
"results_status": "results.kit_activated",
"supplier_item_id": "249602021676720128",
"test_taker_ids": ["257837964552478720"]
}
],
"order_financials": {
"currency": 840,
"total_cents": 7900
},
"status_history": [
{
"status": "results.kit_activated",
"order_item_id": "251285377984405507",
"changed_at": "2026-07-20T14:12:09Z"
},
{
"status": "order.delivery_fulfilled",
"changed_at": "2026-07-20T13:58:41Z"
},
{
"status": "order.processing",
"changed_at": "2026-07-20T13:55:02Z"
}
]
}List orders
Parameter
Meaning
List results
Curating your catalog
Last updated
Was this helpful?