Record Brightree Document Upload Results
Perform Record Brightree Document Upload Results through Tomorrow Health.
tomorrow_health_record_brightree_document_upload_resultswrite
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Patient Key
patient_keyexpressionrequiredRequired literal value or workflow expression.
- Upload Results
upload_resultsjsonrequiredRequired JSON value.
- Skipped Count
skipped_countnumberOptional numeric value.
Default:
0
Outputs
successSuccessdocument_idDocument Idpatient_keyPatient Keyuploaded_countUploaded Countskipped_countSkipped Countfailed_countFailed Countuploaded_document_idsUploaded Document Idserror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"document_id",
"patient_key",
"upload_results"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"skipped_count": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"upload_results": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"document_id": {},
"patient_key": {},
"failed_count": {},
"error_message": {},
"skipped_count": {},
"uploaded_count": {},
"uploaded_document_ids": {}
},
"additionalProperties": true
}