lab_test_id in the POST /v3/order endpoint.

lab_test_id is deprecated in favor of the order_set field. More information here.

1

Remove lab_test_id usage

In the order payload, remove the usage of lab_test_id

{
    "lab_test_id": "some_id" # Remove this
}
2

Use the order_set field

In the order payload, add the order_set object.

{
    "order_set": {
        "lab_test_ids": ["some_id"]
    }
}

value field in the results object

We are removing the value field from the results object, as it does not accuratly capture all possible result values. In turn, we’ve introduced the result field.

Recommended Action

Parse the result field in accordance to the result_type field. More information here.

requisition_form_url in the order object

This field is a signed GCP bucket URL, which is only active for 7 days. It will be removed in favor of the download PDF endpoint.