Skip to documentation
Bonafide integration

Create Patient Notes

Perform Create Patient Notes through Bonafide.

View as Markdown
bonafide_create_patient_notes
writebonafide

Inputs

  • customer_id
    expressionrequired
    Customer Id

    Required literal value or workflow expression.

  • notes
    repeatable_grouprequired
    Notes

    Required list of structured items.

    • category
      selectrequired
      Category

      Required selected identifier or value.

      Default: "19"

      Options: REQUEST ("19"), GTG ("16"), Sent 1st Fax ("5"), GH NOTE ("29")

    • message
      textarearequired
      Message

      Required text value.

Outputs

  • successSuccess
  • customer_idCustomer Id
  • notes_createdNotes Created
  • notes_failedNotes Failed
  • messageMessage
  • error_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",
    "notes"
  ],
  "properties": {
    "notes": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "category",
          "message"
        ],
        "properties": {
          "message": {
            "type": "string",
            "description": "Required text value.",
            "x-workflow-field-type": "textarea"
          },
          "category": {
            "enum": [
              "19",
              "16",
              "5",
              "29"
            ],
            "type": "string",
            "default": "19",
            "description": "Required selected identifier or value.",
            "x-workflow-field-type": "select"
          }
        },
        "additionalProperties": false
      },
      "description": "Required list of structured items.",
      "x-workflow-field-type": "repeatable_group"
    },
    "customer_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "message": {},
    "success": {},
    "customer_id": {},
    "notes_failed": {},
    "error_message": {},
    "notes_created": {}
  },
  "additionalProperties": true
}
View all Bonafide actions