Create a report addendum
auto_scribe.reports.addendum(strreport_id) -> ReportAddendumResponse
/v1/autoScribe/reports/{reportId}/addendum
Initiates the creation of an addendum to an existing completed report. The study status will change to 'addendum_active' allowing the radiologist to dictate additional findings.
Parameters
report_id: str
Unique report identifier. Format: rep_{32-hex-chars}
Returns
Create a report addendum
import os
from avara import Avara
client = Avara(
api_key=os.environ.get("AVARA_API_KEY"), # This is the default and can be omitted
)
response = client.auto_scribe.reports.addendum(
"rep_1234567890abcdef1234567890abcdef",
)
print(response.success)
{
"success": true,
"message": "message"
}
Returns Examples
{
"success": true,
"message": "message"
}