Update CMN
Perform Update CMN through Brightree.
brightree_update_cmnwritebrightree
Inputs
- Cmn Key
cmn_keyexpressionrequiredRequired literal value or workflow expression.
- Cmn Form Key
cmn_form_keyexpressionrequiredRequired literal value or workflow expression.
- Initial Date
initial_datedaterequiredRequired date in YYYY-MM-DD format.
- Recertification Date
recertification_datedaterequiredRequired date in YYYY-MM-DD format.
- Length Of Need Months
length_of_need_monthsnumberrequiredRequired numeric value.
- Signature Date
signature_datedaterequiredRequired date in YYYY-MM-DD format.
- Expiration Date
expiration_datedateOptional date in YYYY-MM-DD format.
Outputs
successSuccessupdatedUpdatednoopNoopcmn_keyCmn Keycmn_form_keyCmn Form Keycmn_initial_dateCmn Initial Datecmn_recertification_dateCmn Recertification Datecmn_length_of_need_monthsCmn Length Of Need Monthscmn_expirationCmn Expirationcmn_signature_dateCmn Signature DatemismatchesMismatchesmessageMessageerrorError
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": [
"cmn_key",
"cmn_form_key",
"initial_date",
"recertification_date",
"length_of_need_months",
"signature_date"
],
"properties": {
"cmn_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"cmn_form_key": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"initial_date": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"signature_date": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"expiration_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"recertification_date": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"length_of_need_months": {
"type": "number",
"description": "Required numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"noop": {},
"error": {},
"cmn_key": {},
"message": {},
"success": {},
"updated": {},
"mismatches": {},
"cmn_form_key": {},
"cmn_expiration": {},
"cmn_initial_date": {},
"cmn_signature_date": {},
"cmn_recertification_date": {},
"cmn_length_of_need_months": {}
},
"additionalProperties": true
}