Create Doctor from NPI Registry
Perform Create Doctor from NPI Registry through Brightree.
brightree_create_doctor_from_npi_registrywritebrightree
Inputs
- First Name
first_nameexpressionrequiredRequired literal value or workflow expression.
- Last Name
last_nameexpressionrequiredRequired literal value or workflow expression.
- Npi
npiexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessmessageMessagedoctor_keyDoctor Keydoctor_nameDoctor NamecreatedCreatedpecos_verifiedPecos VerifiederrorErrorerror_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
}