Docus CDS API (MC)
    • Getting Started
    • Submit Medical Data
      POST
    • Access URL Delivery
      POST

      Submit Medical Data

      POST
      {{docus_endpoint_url}}
      To submit patient medical data to Docus for processing and clinical interpretation.
      This endpoint accepts the data and starts asynchronous processing.
      If the patient is new, once the data is processed and the patient is created on the Docus side, an access_url will be delivered to the partner via a separate server-to-server request.
      At least one of data or file_base64 must be provided.

      Request

      Header Params

      Body Params application/jsonRequired

      Examples

      Responses

      🟢201Success
      application/json
      Bodyapplication/json

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --globoff '{{docus_endpoint_url}}' \
      --header 'x-api-key;' \
      --header 'x-team-id;' \
      --header 'Content-Type: application/json' \
      --data '{
        "patient_id": "pt_123456",
        "data_type": "lab_results",
        "document_id": "doc_78901"
        "data": "",
        "file_base64": {
          "mime_type": "application/pdf",
          "content": "JVBERi0xLjQKJc...",
          "file_name": "lab-result.pdf"
        }
      }'
      Response Response Example
      {
          "message": "string"
      }
      Modified at 2026-06-01 15:25:04
      Previous
      Getting Started
      Next
      Access URL Delivery
      Built with