Retrieve your API key from the Integration section under Settings in the JondaX client portal.
On the Integration page, set your Endpoint URL and optionally an authentication header name + value so JondaX can authenticate with your server.
curl --location 'https://app.jondax.eu/api/master?module=pathology' \
--header 'Authorization: Bearer <JONDAX_API_KEY>' \
--form 'deviceImage=@"/path/to/lab-report.pdf"'The API responds immediately with an UploadId for each uploaded file:
{
"success": true,
"data": {
"type": "pathology",
"status": "uploaded",
"uploads": [
{
"uploadId": "a71fd99c-f510-4226-82ce-c50028e71505",
"fileName": "E46UNRB_96dpi_1.png",
"message": "File uploaded successfully"
}
],
"filesCount": 1,
"message": "1 pathology file(s) uploaded successfully"
}
}JondaX POSTs the structured output to the Endpoint URL you configured. The format (JSON, HL7, FHIR) and delivery method depend on your Integration page settings.