Skip to documentation
Brightree integration

Create Doctor from NPI Registry

Perform Create Doctor from NPI Registry through Brightree.

View as Markdown
brightree_create_doctor_from_npi_registry
writebrightree

Inputs

  • first_name
    expressionrequired
    First Name

    Required literal value or workflow expression.

  • last_name
    expressionrequired
    Last Name

    Required literal value or workflow expression.

  • npi
    expressionrequired
    Npi

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • messageMessage
  • doctor_keyDoctor Key
  • doctor_nameDoctor Name
  • createdCreated
  • pecos_verifiedPecos Verified
  • errorError
  • error_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": [
    "first_name",
    "last_name",
    "npi"
  ],
  "properties": {
    "npi": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "last_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "first_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "message": {},
    "success": {},
    "doctor_key": {},
    "doctor_name": {},
    "error_message": {},
    "pecos_verified": {}
  },
  "additionalProperties": true
}
View all Brightree actions