Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.

Add Funds

Add credits to your wallet via Stripe payment. Minimum $50.00, maximum $10,000.00 per transaction.
If payment_method_id is provided (a saved card), the charge is processed immediately. Otherwise, a Stripe client secret is returned for completing payment with a new card on the frontend.
body amount_centsnumberrequired
Amount to add in cents. Minimum 5000 ($50), maximum 1000000 ($10,000).
body payment_method_idstring
Stripe payment method ID for a saved card. If omitted, returns a client secret.
Request example
curl -X POST https://api.v2.dealmachine.com/v1/mail/wallet/add-funds \ -H "Authorization: Bearer dm_sk_live_xxx" \ -H "Content-Type: application/json" \ -d '{"amount_cents": 10000, "payment_method_id": "pm_xxx"}'
Response example
{ "data": { "payment_intent_id": "pi_xxx", "amount_cents": 10000, "succeeded": true } }