Update Source of Business
Perform Update Source of Business through Bonafide.
bonafide_update_source_of_businesswritebonafide
Inputs
- Customer Id
customer_idexpressionrequiredRequired literal value or workflow expression.
- Source Of Business Id
source_of_business_idselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
Outputs
successSuccesscustomer_idCustomer Idsource_of_business_idSource Of Business Idsource_of_business_labelSource Of Business LabelmessageMessageerrorErrorerror_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",
"source_of_business_id"
],
"properties": {
"customer_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"source_of_business_id": {
"type": "string",
"description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"message": {},
"success": {},
"customer_id": {},
"error_message": {},
"source_of_business_id": {},
"source_of_business_label": {}
},
"additionalProperties": true
}