Create a fax payment link
create_fax_paymentCreate a Stripe Checkout payment link for a fax. Returns payment_url — give this link to the human so they can pay in their browser (agents never handle card details) — and payment_id, which you pass to send_fax after the human has paid. The price is computed server-side from the document or text. The Checkout link expires (see expires_at, ~24h); create a fresh one if the human delays.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient fax number in international format, e.g. +15551234567. | |
| pages | No | Page count, if pricing without the document. send_fax re-verifies against the real content. | |
| cover_text | No | Plain text to fax instead of a document. | |
| document_url | No | Public http(s) URL of the PDF to fax (same one you will pass to send_fax). |