Skip to documentation
Brightree integration

Update Ordering Doctor Contact From Document

Perform Update Ordering Doctor Contact From Document through Brightree.

View as Markdown
brightree_update_ordering_doctor_contact_from_document
writebrightree

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • doctor_key
    expressionrequired
    Doctor Key

    Required literal value or workflow expression.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: true

Outputs

  • successSuccess
  • document_idDocument Id
  • doctor_keyDoctor Key
  • contact_sourceContact Source
  • dry_runDry Run
  • savedSaved
  • contact_update_failedContact Update Failed
  • skippedSkipped
  • eligibleEligible
  • npi_verifiedNpi Verified
  • pecos_verifiedPecos Verified
  • beforeBefore
  • requestedRequested
  • afterAfter
  • changesChanges
  • messageMessage
  • errorError
  • error_messageError Message

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
Yes

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "document_id",
    "doctor_key"
  ],
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "doctor_key": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "after": {},
    "error": {},
    "saved": {},
    "before": {},
    "changes": {},
    "dry_run": {},
    "message": {},
    "skipped": {},
    "success": {},
    "eligible": {},
    "requested": {},
    "doctor_key": {},
    "document_id": {},
    "npi_verified": {},
    "error_message": {},
    "contact_source": {},
    "pecos_verified": {},
    "contact_update_failed": {}
  },
  "additionalProperties": true
}
View all Brightree actions