Lab Testing - Results
Get Results Metadata
Return metadata related to order results, such as lab metadata,
provider and sample dates.
GET
/v3/order/{order_id}/result/metadata
x-vital-api-key*
curl --request GET \
--url '{{BASE_URL}}/v3/order/<order_id>/result/metadata' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}'
{
"age": 19,
"dob": "18/08/1993",
"clia_number": "12331231",
"patient": "Bob Smith",
"provider": "Dr. Jack Smith",
"laboratory": "Quest Diagnostics",
"date_reported": "2020-01-01",
"date_collected": "2022-02-02",
"specimen_number": "123131",
"date_received": "2022-01-01",
"status": "final",
"interpretation": "normal"
}
Path Parameters
order_idrequired
string
Response
200 - application/json
agerequired
string
clia_#
string
date_collected
string
date_received
string
date_reportedrequired
string
dobrequired
string
interpretation
string
laboratory
string
patientrequired
string
provider
string
specimen_numberrequired
string
status
Default: "final"string
curl --request GET \
--url '{{BASE_URL}}/v3/order/<order_id>/result/metadata' \
--header 'accept: application/json' \
--header 'x-vital-api-key: {YOUR_KEY}'
{
"age": 19,
"dob": "18/08/1993",
"clia_number": "12331231",
"patient": "Bob Smith",
"provider": "Dr. Jack Smith",
"laboratory": "Quest Diagnostics",
"date_reported": "2020-01-01",
"date_collected": "2022-02-02",
"specimen_number": "123131",
"date_received": "2022-01-01",
"status": "final",
"interpretation": "normal"
}