Skip to documentation
Brightree integration

Sync Patient Documents for Duplicate Check

Perform Sync Patient Documents for Duplicate Check through Brightree.

View as Markdown
brightree_sync_patient_documents
writebrightree

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • patient_key
    expressionrequired
    Patient Key

    Required literal value or workflow expression.

  • document_types
    textrequired
    Document Types

    Required text value.

Outputs

  • successSuccess
  • is_duplicateIs Duplicate
  • already_in_dbAlready In Db
  • found_in_brightreeFound In Brightree
  • synced_countSynced Count
  • errorError

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",
    "document_types"
  ],
  "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"
    },
    "document_types": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "is_duplicate": {},
    "synced_count": {},
    "already_in_db": {},
    "found_in_brightree": {}
  },
  "additionalProperties": true
}
View all Brightree actions