Skip to documentation
Brightree integration

Claim Template Schedule Audit Slice

Perform Claim Template Schedule Audit Slice through Brightree.

View as Markdown
brightree_claim_template_schedule_audit_slice
writebrightree

Inputs

  • account_key
    text
    Account Key

    Optional text value.

  • workflow_route
    textrequired
    Workflow Route

    Required text value.

  • interval_days
    numberrequired
    Interval Days

    Required numeric value.

    Default: 14

  • slice_size
    numberrequired
    Slice Size

    Required numeric value.

    Default: 15

  • lease_minutes
    numberrequired
    Lease Minutes

    Required numeric value.

    Default: 240

  • max_candidates
    numberrequired
    Max Candidates

    Required numeric value.

    Default: 5000

Outputs

  • successSuccess
  • dueDue
  • cycle_idCycle Id
  • cycle_statusCycle Status
  • itemsItems
  • countCount
  • total_item_countTotal Item Count
  • 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": [
    "workflow_route",
    "interval_days",
    "slice_size",
    "lease_minutes",
    "max_candidates"
  ],
  "properties": {
    "slice_size": {
      "type": "number",
      "default": 15,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "interval_days": {
      "type": "number",
      "default": 14,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "lease_minutes": {
      "type": "number",
      "default": 240,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_candidates": {
      "type": "number",
      "default": 5000,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "workflow_route": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "due": {},
    "count": {},
    "error": {},
    "items": {},
    "message": {},
    "success": {},
    "cycle_id": {},
    "cycle_status": {},
    "total_item_count": {}
  },
  "additionalProperties": true
}
View all Brightree actions