Skip to documentation
Brightree integration

Update CMN

Perform Update CMN through Brightree.

View as Markdown
brightree_update_cmn
writebrightree

Inputs

  • cmn_key
    expressionrequired
    Cmn Key

    Required literal value or workflow expression.

  • cmn_form_key
    expressionrequired
    Cmn Form Key

    Required literal value or workflow expression.

  • initial_date
    daterequired
    Initial Date

    Required date in YYYY-MM-DD format.

  • recertification_date
    daterequired
    Recertification Date

    Required date in YYYY-MM-DD format.

  • length_of_need_months
    numberrequired
    Length Of Need Months

    Required numeric value.

  • signature_date
    daterequired
    Signature Date

    Required date in YYYY-MM-DD format.

  • expiration_date
    date
    Expiration Date

    Optional date in YYYY-MM-DD format.

Outputs

  • successSuccess
  • updatedUpdated
  • noopNoop
  • cmn_keyCmn Key
  • cmn_form_keyCmn Form Key
  • cmn_initial_dateCmn Initial Date
  • cmn_recertification_dateCmn Recertification Date
  • cmn_length_of_need_monthsCmn Length Of Need Months
  • cmn_expirationCmn Expiration
  • cmn_signature_dateCmn Signature Date
  • mismatchesMismatches
  • messageMessage
  • errorError

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
}
View all Brightree actions