deals_add_installment
Add an installment with a description, amount, and billing date to an existing deal.
Instructions
Add an installment to a deal (API v2).
Required: description (name), amount (positive, non-zero) and billing_date (YYYY-MM-DD).
Common use cases:
{ "id": 123, "description": "Deposit", "amount": 500, "billing_date": "2026-01-15" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Deal ID to attach the installment to | |
| amount | Yes | Installment amount (positive, non-zero) | |
| description | Yes | Installment name | |
| billing_date | Yes | Billing date (YYYY-MM-DD) |