Refund request intake
Collects structured refund-request information from the customer — invoice ID, reason category, amount in dispute, evidence — and produces a handoff packet for human review.
Use this when your client wants AI-handled intake but human-decided eligibility. Common in B2B SaaS where refund logic involves contract terms.
The workflow does not check refund policy or process refunds. It gathers the information and stops. Eligibility is decided by a human or a separate policy workflow.
- intake
- collect
- confirm
- handoff
Provisioning the MCP URL for Refund request intake is part of Pro.
Free accounts can read the YAML, run the Live Preview, and provision one starter URL. Pro provisions URLs for the whole catalog.
Open YAML. Read it before you subscribe.
The harness that enforces this YAML is closed and hosted. The YAML is what you can audit, fork, and reason about.
1# refund-request-intake.yaml2name: refund-request-intake3version: 1.0.04category: billing5description: Collects refund-request information for human review.6 7inputs:8 - name: customer_id9 type: string10 required: true11 12required_fields:13 - invoice_id14 - reason_category15 - amount_in_dispute16 - evidence_summary17 18reason_categories:19 - duplicate_charge20 - service_unavailable21 - billing_error22 - dissatisfaction23 - other24 25harness:26 - step: intake27 - step: collect28 fields: <required_fields>29 one_field_per_turn: true30 - step: confirm31 show_summary: true32 - step: handoff33 emit:34 packet: refund_request35 decision_required: human36 37outputs:38 - refund_request_packet39 Need refund request intaketuned to one client’s voice, escalation logic, and required fields? That’s a $99 personalization.
One-shot fee. Turnaround stated up front. The result is yours, with the deterministic harness already wired.
- Invoice clarificationWalks the customer through a specific invoice line by line and answers questions grounded in the line items provided.
- Subscription cancellationHandles cancellation intake, captures the reason, and confirms the effective date — without retention pressure.
- Payment failure recoveryWalks customer through updating a failed payment method.