Docus CDS API (MC)
    Docus CDS API (MC)
    • Submit Medical Data
      POST

      Submit Medical Data

      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",
        "data_type": "lab_results",
        "data": "",
        "file_base64": {
          "mime_type": "application/pdf",
          "content": "JVBERi0xLjQKJc...",
          "file_name": "lab-result.pdf"
        }
      }'
      Response Response Example
      {
          "message": "string"
      }
      Modified at 2026-03-11 09:45:16
      Built with