POST request to the partner’s configured endpoint. The payload includes the original patient_id and an access_url that can be stored in the hospital system and used by doctors to open the patient’s interpretations in Docus with one click.curl --location --globoff '{{partner_endpoint_url}}' \
--header 'x-api-key: <provided_by_partner>' \
--header 'Content-Type: application/json' \
--data '{
"patient_id": "{patient_id}",
"access_url": "{access_url}"
}'{}