Have It Printed

Print and mail physical documents in the US via USPS, with quotes, agent payment and tracking.

Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only

What it can do

    What data it sees

    Do you need an account

    No: the server works without sign-in

    Print and mail physical documents in the US via USPS, with quotes, agent payment and tracking.

    Server tool list (10)

    Raw names from tools/list. Only developers need these.

    hip_get_service_infoWhat Have It Printed does, what it costs, what file types and sizes are accepted, and how mailing works. Needs a Bearer API key, like every tools/call (POST /v1/onboard to get one).
    hip_create_jobStart a print-and-mail job. Returns an opaque job_handle used by every later call. Creates nothing chargeable.
    hip_get_upload_targetGet a short-lived upload URL for the customer's document. PUT the bytes to it. File type and size limits are the same as the website.
    hip_update_jobSet the documents, print options and US mailing recipient on a job. Price fields are rejected: the server computes all amounts.
    hip_quoteExact price for the job, computed by the same pricing the website checkout uses. Tax, if any, is added by Stripe at payment.
    hip_create_checkoutCreate a Stripe Checkout session for the job and return its URL. This does NOT take payment: the customer completes payment at that URL. Show them the quote first.
    hip_get_checkout_statusWhether the customer has paid yet. Payment truth comes from the order record Stripe's webhook creates, never from a browser redirect.
    hip_prepare_paymentResolve the EXACT amount HIP will charge, before any payment authorization is obtained or spent. This does NOT charge anything. Returns subtotal_cents, tax_cents, total_cents, currency, a pricing fingerprint and the authorization types HIP accepts. Tax is calculated by Stripe from the destination, so hip_quote alone is not the payable amount. The returned total is bound to this job's documents, options and recipient: change any of them and payment is refused with QUOTE_STALE until you prepare again. Use this when paying autonomously with a delegated payment authorization; a human paying in a browser does not need it. Commits the job to the autonomous payment rail.
    hip_complete_paymentPay for the job with a delegated payment authorization, with no browser and no human step. payment_authorization must be a Stripe shared payment token (spt_...) granted to Have It Printed whose maximum is at least the total from hip_prepare_payment; HIP charges exactly that total and never more. NEVER send a card number, expiry, CVV or any reusable credential to this tool. If the cardholder's bank requires authentication, this returns payment_status=requires_user_action rather than bypassing it.
    hip_get_orderStatus and USPS tracking for the paid order belonging to this job.