Skip to documentation
MyForms integration

Collect Monthly Workflow Report

Perform Collect Monthly Workflow Report through MyForms.

View as Markdown
myforms_monthly_workflow_report
read

Inputs

  • report_anchor_date
    expression
    Report Anchor Date

    Optional literal value or workflow expression.

  • report_month
    text
    Report Month

    Optional text value.

  • timezone_name
    textrequired
    Timezone Name

    Required text value.

    Default: "America/Los_Angeles"

  • account_key
    textrequired
    Account Key

    Required text value.

    Default: "soundview_mr"

  • workflow_template
    textrequired
    Workflow Template

    Required text value.

    Default: "Insurance Intake"

  • workflow_template_id
    numberrequired
    Workflow Template Id

    Required numeric value.

    Default: 90290

  • include_deidentified_rows
    booleanrequired
    Include Deidentified Rows

    Required true-or-false value.

    Default: true

  • max_csv_bytes
    numberrequired
    Max Csv Bytes

    Required numeric value.

    Default: 26214400

  • max_rows
    numberrequired
    Max Rows

    Required numeric value.

    Default: 10000

Outputs

  • successSuccess
  • report_periodReport Period
  • totalTotal
  • status_countsStatus Counts
  • completed_countCompleted Count
  • average_turnaround_daysAverage Turnaround Days
  • median_turnaround_daysMedian Turnaround Days
  • rowsRows
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "timezone_name",
    "account_key",
    "workflow_template",
    "workflow_template_id",
    "include_deidentified_rows",
    "max_csv_bytes",
    "max_rows"
  ],
  "properties": {
    "max_rows": {
      "type": "number",
      "default": 10000,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "account_key": {
      "type": "string",
      "default": "soundview_mr",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "report_month": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_csv_bytes": {
      "type": "number",
      "default": 26214400,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "timezone_name": {
      "type": "string",
      "default": "America/Los_Angeles",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_template": {
      "type": "string",
      "default": "Insurance Intake",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "report_anchor_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "workflow_template_id": {
      "type": "number",
      "default": 90290,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "include_deidentified_rows": {
      "type": "boolean",
      "default": true,
      "description": "Required true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "rows": {},
    "error": {},
    "total": {},
    "success": {},
    "report_period": {},
    "status_counts": {},
    "completed_count": {},
    "median_turnaround_days": {},
    "average_turnaround_days": {}
  },
  "additionalProperties": true
}
View all MyForms actions