Results
Get Results Metadata
Orders
At-home Phlebotomy
Patient Service Center (PSC)
Tests
Health Insurance
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
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"
}
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"
}
Authorizations
Vital Team API Key
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
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"
}