Docus CDS API (Labs)
    Docus CDS API (Labs)
    • Getting Started
    • Submit Lab Results
      POST
    • Generate Interpretation
      POST
    • Access URL Delivery
      POST

      Submit Lab Results

      POST
      {{docus_endpoint_url}}
      Accepts medical data and triggers clinical interpretation.
      At least one of data or file_base64 must be provided.

      Request

      Header Params

      Body Params application/jsonRequired

      Examples

      Responses

      đŸŸ¢201Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location -g --request POST '{{docus_endpoint_url}}' \
      --header 'x-api-key;' \
      --header 'x-team-id;' \
      --header 'Content-Type: application/json' \
      --data-raw '{
        "patient_id": "pt_123456",
        "patient_email": "patient@mail.com",
        "physician_email": "physician@mail.com",
        "reference_id": "C1234",
        "data": "",
        "file_base64": {
          "mime_type": "application/pdf",
          "content": "JVBERi0xLjQKJc...",
          "file_name": "lab-result.pdf"
        }
      }'
      Response Response Example
      {
          "message": "string"
      }
      Previous
      Getting Started
      Next
      Generate Interpretation
      Built with