Update Patient's Default Claim Physician
Perform Update Patient's Default Claim Physician through Bonafide.
bonafide_link_physician_to_patientwritebonafide
Inputs
- Customer Id
customer_idexpressionrequiredRequired literal value or workflow expression.
- Physician Id
physician_idexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccesscustomer_idCustomer Idphysician_idPhysician Idprevious_physician_idPrevious Physician IdmessageMessageerrorErrorerror_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": [
"customer_id",
"physician_id"
],
"properties": {
"customer_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"physician_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"success": {},
"customer_id": {},
"physician_id": {},
"error_message": {},
"previous_physician_id": {}
},
"additionalProperties": true
}