Allows for uploading a result of a lab order

PUT /results/ldt

Body

Lab result as LDT document.

string(LDT) string(LDT)

Responses

  • 200

    Result uploaded successfully

  • 400

    invalid LDT Document

  • 401

    API key invalid or missing

    Hide headers attribute Show headers attribute
    • WWW-Authenticate string
  • 404

    no order for external order number found

  • 500

    General error response body

    Hide response attribute Show response attribute object
    • message string
PUT /results/ldt
curl \
 -X PUT https://api.labres.dev.healthmetrix.com/v1/results/ldt \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: text/plain" \
 -d '"string"'
Request example
"string"
Request examples
string
Response examples (500)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}