Developer Changelog
Public, developer-facing contract changes for the Throttle API, embedded checkout, webhooks, and SDKs. Internal refactors and UI-only changes are excluded.
2026-09-14 — PayPal connector form explains its fields
- Dashboard. Add connector → PayPal now says where each credential lives in the PayPal Developer Dashboard, which of the five fields are optional, and that BN Code and Merchant ID should be left blank for a merchant's own account. The form links to a new product doc, Connecting PayPal, with the full walkthrough. No API change.
2026-09-12 — Paid orders can no longer be set back to Draft or Pending
- Dashboard. The Goods status picker on an order withholds Draft and
Pending once a payment has been authorized or captured. Both statuses mean the order
has not been paid, so on a paid order they recorded a false state while the capture
stayed in place underneath. The order's current status is always still shown. No API
change:
POST /api/v1/orders/{id}/statusstill accepts any of the seven statuses.
2026-09-11 — Mint an update-card link from the API
- API.
POST /api/v1/payment-methods/client-tokenaccepts an optionalsubscriptionId. When given, the token names that subscription, lives 14 days, and the response addsupdateCardUrl, the same hosted page the renewal-failed email links to, so a merchant can send a buyer the link by any channel. A subscription that is not the customer's reads as 404. Without the field the route is unchanged.
2026-09-11 — Renewal-failed emails link to the hosted update-card page
- Emails.
customer.subscription_payment_failed(v3) now carries an Update your card button. The link is minted per send for that customer and subscription and is valid 14 days, long enough to outlast the retry ladder. The template gainslinks.updateCardandsubscription.id; a custom override can reference both. On a deployment that cannot sign the link the button is hidden and the copy falls back to the previous wording.
2026-09-11 — Hosted "update your card" page
- Hosted pages.
https://checkout.usethrottle.dev/billing/{token}is a branded page where a buyer saves a new card for a subscription. The token is a pm_client_token minted for one customer and one subscription. The page shows the plan, the amount due, and the card on file; the buyer enters a card through the add-only embed, it becomes the default, and a past-due subscription is charged on the spot with the result shown in place ("Payment received", "Card saved, but the charge was declined", or "Card saved" when nothing is owed). Expired, forged, and someone-else's-subscription tokens all render the same expired state. The renewal-failed email links here next.
2026-09-11 — Buyer-scoped subscription routes for the update-card flow
- API.
GET /api/v1/me/subscriptions/{id}returns one of the authenticated customer's subscriptions with the default card that renews it, andPOST /api/v1/me/subscriptions/{id}/retry-chargecharges a past-due subscription immediately, answeringcharged. Both authenticate withX-Throttle-PM-Token, the same buyer credential as the/me/payment-methodswallet, which may now carry asubscriptionIdclaim. A subscription that is not the token's customer's reads as 404. First step of the hosted "update your card" link for past-due renewals; the hosted page and the email link follow.
2026-09-11 — Deposit terms on any quote revision
- Dashboard. The working-revision editor on a quote now offers "Deposit + balance" beside Pay in full and Net-N, with the deposit type, amount, and balance Net days editable. Before, the split could only be chosen on the new-quote form, so a buyer-submitted request could never be quoted with a deposit, and an existing deposit split could not be adjusted or removed. Percent, fixed-amount, and Net-day inputs are validated in the form with the same rules the API enforces. No API change.
2026-09-11 — Overdue renewals stand out in the subscriptions list
- Dashboard. An active or trialing subscription whose period ended on an
earlier day and never renewed now reads "renewal overdue · N days ago" in red and its row
is highlighted, the same treatment as a past-due row with failed attempts. Before, it
read like any other row. The status and interval filters show "Past due" and "Monthly"
rather than the raw values. No API change.
2026-09-11 — Paying at the end of a trial unlocks Production
- Fixed.
POST /api/v1/billing/subscribenow advances the workspace'slifecycleStagetoproductionalong with marking the subscription active. It set the stage only on the application-billing mirror, while the dashboard's environment selector gates the Production environment on the workspace stage — so a workspace that subscribed after its trial ended stayedsandboxand Production remained disabled after a successful charge. Resume after an unpaid period already wrote the stage; the two paths now match.
2026-09-11 — Ship part of an order from the dashboard
- Dashboard. Create fulfillment now lists the order's lines with what is
still outstanding on each and a quantity per line, defaulting to everything left. Picking
less sends
lineItemIdswith quantities toPOST /api/v1/orders/{id}/fulfillments, which the API has always accepted (and capped with409 over_fulfillment); the dashboard used to send an empty list, sopartially_fulfilledwas unreachable from the UI. Each fulfillment card now says which lines it covers. No API change.
2026-09-11 — A "not shipped yet" orders filter
- New.
GET /api/v1/orders?delivery=not_shipped(and the CSV export) returns orders inprocessingorpartially_fulfilledwith no shipment handed to a carrier and no return. The status scope is part of the predicate, so a fulfiller's queue never accumulates cancelled or closed orders. The dashboard's delivery filter gains "Not shipped yet"; previously the only way to build the morning pick list was to combine Processing and Paid by hand.
2026-09-11 — Undo a scheduled cancel while past due
- Fixed.
POST /api/v1/subscriptions/{id}/resumenow clearscancelAtPeriodEndon a subscription in any non-cancelled status. It used to answer400 invalid_subscription_statefor apast_dueortrialingsubscription, even though/cancelwithatPeriodEnd: trueaccepts those, so a scheduled cancellation there could not be undone. Status is unchanged by the undo; a past-due subscription stays past due. The dashboard's Cancel at period end now asks for confirmation.2026-09-11 — Recording delivery completes the fulfillment
- Fixed.
POST /api/v1/fulfillments/{id}/deliverednow moves apendingorprocessingshipment fulfillment tocompletedbefore recording the arrival, emittingfulfillment.completedand thenfulfillment.shipment.delivered, and rolling the order up tofulfilled. A fulfillment created with a tracking number used to sit atpendingwith a delivery date on it, and its order stayedprocessing. Already-completed fulfillments are unchanged.2026-09-11 — Signup charge counts as the first payment
- Fixed. A subscription created active with a signup charge now carries
lastPaymentAtfrom the moment it is created, alongside the paid period-1 invoice it has always recorded. It used to staynulluntil the first renewal, so a subscription whose first renewal failed reported no successful payment ever while showing a paid invoice. Trials and hybrid checkouts (signupCharged: false) are unchanged: no charge, no stamp. The renewal guard compares againstcurrentPeriodEnd, so renewals are unaffected.2026-09-11 — Merchants can decline a quote request
- New.
PATCH /api/v1/quotes/{id}acceptsstatus: 'declined'with an optionaldeclinedReason. Legal fromrequested,under_review,revision_requested, andproposed; terminal apart from archive. The buyer receivescustomer.quote_declinedwith the reason, the timeline records a merchant decline, andquote.declinedfires withdeclinedBy: 'merchant'. Before this the only exit for a request a merchant would not price was archiving it, which told the buyer nothing. - Dashboard. A Decline action with a reason field sits beside Archive on
the quote page, and Issue to buyer is disabled until the working revision has a line
(the API already refused with
409 empty_revision).
2026-09-11 — Partner referrals report handoff progress
- Pay for client is pre-handoff only.
POST /api/v1/partner/trials/{referralId}/claim-billinganswers409 client_owns_workspaceonce the workspace has been handed off (invite outstanding or accepted). Handoff also restores a referral's commission eligibility if an earlier partner-pays period had marked it ineligible. - Undo.
POST /api/v1/partner/trials/{referralId}/revoke-handoffcancels an outstanding client ownership invite and makes the acting partner member the owner again. Answers409 handoff_not_revocableonce the client has accepted, or when the workspace was never handed off. Requires a workspace member session (partner:write). - New field. Each item of
GET /api/v1/partner/me/referralscarrieshandoffState:not_started(the partner still owns the client workspace),invited(the client owner has been invited and has not accepted), orclaimed. The existingstatusfield is conversion state and does not change at handoff. Items are now ordered newest first.
- New.
- Fixed. A subscription created active with a signup charge now carries
- Fixed.
- Fixed.
2026-09-11 — Billing writes are owner-only for dashboard sessions
- Enforced. The permission catalog has always declared
workspace:billingas owner-only, but the billing routes never checked it, so any workspace admin could add a card, subscribe, cancel, or resume. Dashboard (Clerk session) callers now get403 permission_deniedonPOST /api/v1/billing/subscribe,/cancel,/resume, and on writes to/api/v1/billing/payment-methodsunless they are the workspace owner. Reads are unchanged. API keys are gated by scope alone and are not affected. - New field.
billedByWorkspaceId(nullable UUID) on each item ofGET /api/v1/workspaces, onGET /api/v1/billing/state, and onworkspaceinGET /api/v1/billing/overview. Set when a partner has claimed billing for the workspace. The dashboard uses it to stop asking a partner-billed workspace's members for a payment method, and no longer shows a payment call to action to members who cannot act on it.2026-09-10 — Endpoints that stop verifying are reported in minutes, not days
- Why. The 2026-09-08 outage below ran for hours with nobody told. The only automatic signal was auto-suspend after five dead-lettered deliveries, each the end of a 31-hour retry ladder, and the hourly failing-webhooks digest reached the merchant only, never the extension publisher who could fix it.
- Unauthorized streak alert. Three consecutive
401/403responses from an endpoint — workspace or extension, any attempt — sendsystem.webhook_auth_failingby email and in-app to the application's admins and, for an extension endpoint, the publisher's admins. Once per streak. Retries continue unchanged. - Scheduled signed probe. The install-time
extension.pingnow also runs against every active extension endpoint two minutes after each deploy and every six hours. A non-2xx answer sendssystem.extension_webhook_probe_failedto the same recipients, at most once per endpoint per day. Details on the extension events page .2026-09-10 — Signing-secret rotation with a grace window
- Dual-signed deliveries. After
POST /api/v1/webhook-endpoints/:id/rotate-secretthe old secret keeps verifying forgraceSeconds(default 24h, max 7d): every delivery carries two digests,v1=<outgoing>,v1=<new>. Before today the old secret died the instant you clicked rotate.graceSeconds: 0keeps that behaviour for a leaked secret. The response and the installation secret read reportpreviousSecretExpiresAt. - Extensions can rotate their own secret. New
POST /api/v1/installations/:id/rotate-webhook-secret, same identity gate as the secret read. When the merchant rotates instead, the endpoint receives a signedextension.webhook_secret_rotated(no secret inside) so it can fetch the new one before the deadline. Delivered to the installation's own endpoint likeextension.uninstalled. - Verifiers.
@usethrottle/webhook-typesand@usethrottle/extension-bridgeaccept multiplev1digests (patch releases); the documented Node verifier snippet does too. The extension starter's verifier already did. A verifier that keeps only the last digest is unaffected: the new secret is always last.2026-09-10 — An example delivery for every event
- Docs. The event payload reference now shows, under each of the 93 events, the exact envelope a delivery carries — fixed ids and timestamps, real nesting, real units — instead of only the key list. Items 1 and 2 from the first third-party extension team.
- API. Each entry on
GET /api/v1/event-typesgainsexample, the same envelope. It is built by the send-test fixture with a fixed clock, so it is byte-stable across requests and a build step can pin it. - Not JSON Schema. The example is illustrative, not a validator.
Optional fields may be absent on a real delivery and Throttle adds fields without
notice (see the envelope evolution policy below); a schema derived from the example
must not be
strict.
- Dual-signed deliveries. After
2026-09-10 — Envelope evolution policy, after a strict-schema outage
- Incident. From 03:50 UTC on 2026-09-08 an extension built from the
Throttle extension starter rejected every delivery with
401 WEBHOOK_VERIFICATION_FAILED. No secret rotated and the signed bytes were the sent bytes: the starter's envelope schema was.strict(), the newenvironmentKindfield failed the parse after the HMAC had matched, and the handler reported the parse failure under the signature code. Fixed in starter PR #11 ; every extension built before it needs the same change and a redeploy. - Policy, now written down. Throttle adds envelope and
datafields without bumpingversion. Consumers must ignore or strip unknown keys.versionchanges only when an existing field is removed, renamed, or changes type, and never without notice. Verify the signature and parse the envelope as separate steps with separate failure codes. - Docs. The extension events page now lists
environmentKindin its envelope, which the 2026-09-09 entry below had omitted.
2026-09-09 — Envelope says which environment kind; replays keep their timestamp
- New envelope field
environmentKind.productionornon_production, on every outbound webhook and extension delivery. If your destination is a live system, dropnon_productiondeliveries in one check instead of maintaining a denylist of test email prefixes. Additive; field order in the envelope otherwise unchanged. - Replays preserve
createdAt. A replayed delivery (workspace endpoints and extension installations) now carries the original event'screatedAt, not the replay time. Same id, same payload, same timestamp — the send time is thet=in the signature header. -
GET /api/v1/event-typesstates units. A top-levelconventionsobject says money is integer minor units, timestamps ISO 8601 UTC, ids opaque. - Docs. Identity tokens: unknown claims must be ignored (the claim set
is additive). Webhook-secret endpoint: the response body is the secret — keep it out
of error objects. Install-time ping: it is signed; a first
401is a sequencing issue your extension can heal by fetching the secret.
2026-09-09 — Extensions are told when an installation ends
- New event
extension.uninstalled. Uninstalling an extension — from the dashboard, the API, or a staff takedown — now sends one signed delivery to that installation's webhook URL, carryinginstallationId,extensionId,applicationId,uninstalledAtandreason. It needs no subscription, scope, or API key on the extension's side, is sent after the installation readsuninstalled, and is retried like any other delivery. Before this, nothing told an extension its installation was over, so provider credentials it held outlived the install. Workspace endpoints may also subscribe to it (extensions:read). See the extension events reference .
2026-09-09 — Script external domains: one wildcard label, and CSP blocks are reported
-
externalDomainsaccepts*.example.com. One leading wildcard label, for vendor SDKs that publish*.vendor.comas their CSP guidance instead of a fixed host list. It becomeshttps://*.example.comin the sandbox CSP — every subdomain, never the bare domain, never*. The same rule is applied at write time, in the CSP, inside the frame, in marketplace preflight and in review observation. Bare hostnames are unchanged. - A CSP refusal is now a
blockedoutcome. The sandbox document forwards the browser's own violation report, so a request to an undeclared host counts as blocked in script health, and thescript.blockedevent names it:detail: { reason: "csp", directive, blockedUri }. Previously the only trace was a console line in the buyer's browser. Capped at five per frame.
2026-09-08 — Fulfillment events carry the buyer; shipped fires on create
-
Every
fulfillment.*event now carriesdata.customer. Same shape and| nullsemantics asorder.*, attached at delivery from the fulfillment's order; the embeddedorderalso gainscustomerId. Until now the tracking number lived only onfulfillment.shipment.shippedand the buyer only onorder.*, so a shipping notification could not be built from a single event. -
fulfillment.shipment.shippedfires when a shipment is created with tracking.POST /api/v1/orders/{orderId}/fulfillmentsaccepts an optionalshipmentblock (same fields asPATCH .../shipment); atrackingNumberthere fires the event right afterfulfillment.created. Previously only the PATCH path fired it, so a shipment created with tracking never "shipped" as far as webhooks knew. Fires once per shipment; later tracking edits do not re-fire it.
August 2026 — previously unannounced contract changes
Recorded late. Each of these changed an existing endpoint or event contract and shipped without a changelog entry.
- 2026-09-06 — Three
script.*events andimport.completed.script.loaded,script.blocked(detail.reasonnames the cause, e.g.consent) andscript.errorunder the newapplication_scripts:readscope, alongside the scripts feature below.import.completedfires when a bulk import commit finishes. - 2026-08-29 —
subscription.invoice_refunded. Fires when a subscription invoice is refunded. - 2026-08-23/24 — Seven new order and payment events.
order.comped,order.comp_reversed,payment.recorded(08-23);order.held,order.hold_released,payment.expired,payment.processing(08-24). Every entry carries its read scope inGET /api/v1/event-types; an extension must hold that scope before it can subscribe. - 2026-08-24 —
fulfillment.shipment.deliveredmeans arrival, and carries the shipment. It fires when a shipment is recorded as arrived viaPOST /api/v1/orders/{orderId}/fulfillments/{id}/delivered, no longer when the shipment fulfillment is marked completed. Completing is carrier handoff; listen forfulfillment.completedif that is what you want. The payload gainedshipment(now a required key) so the arrival carries its tracking details. - 2026-08-22 —
order.completedrenamed toorder.fulfilled. Stored webhook and extension subscriptions were rewritten in place to the new name. If your subscription list looks different from what you registered, this is why; deliveries of the old name before that date were legitimate.order.closed's trigger text changed with it ("a fulfilled order is closed"); its behaviour did not. - 2026-08-11 — Extensions can read their own webhook signing secret.
GET /api/v1/installations/{id}/webhook-secret, authenticated with the extension's launch (identity) token. Reinstalling keeps the existing endpoint and secret, and incrementsinstallSequenceon the installation. The response body is the secret: do not attach it to error objects or logs. - August 2026 —
GET /api/v1/event-typesgainedtrigger,dataShapeandrequiredDataKeys. Rendered from the same reference as the webhooks reference page, so the two cannot disagree.
2026-09-05 — Run your own scripts on hosted checkout
- Merchants can add their own JavaScript to hosted checkout.
Throttle runs it in an isolated, null-origin sandboxed iframe on
/cand/s(non-embed mode only) — no DOM access, sandbox tier only. See Your Own Scripts. -
New
/api/v1/application-scriptsendpoints. Create, list, update, and soft-delete scripts, plus an environment-wide kill switch and a last-24h load-outcome health endpoint. Managed from the dashboard's Settings → Scripts, or directly via the API. - New public delivery endpoint.
GET /api/v1/storefront/script-assets/:id/:sha256serves script source by content hash — immutable, unauthenticated, and the one point of truth every delivery path (the checkout-web/es/<id>/<sha256>.jsproxy and the/sandboxdocument route) resolves through.
2026-09-07 — Extension listing images over the API
-
POST /api/v1/extensions/icon-uploadandPOST /api/v1/extensions/screenshot-uploadaccept secret API keys. Both previously answered403 clerk_requiredto anything but a dashboard session, which made image upload the one step of a marketplace submission that could not be scripted. Any credential holdingextensions:writecan now upload; the field name, size limits, and response shape are unchanged. See Publishing to the Marketplace.
2026-08-23 — company on customers
-
Customers carry a first-class
company.POST /api/v1/customersandPATCH /api/v1/customers/:idaccept it, and every customer response returns it (nullwhen unset). Sendnullor an empty string to clear it. Existing records were backfilled frommetadata.companyNameand the default address's company, so a value you already stored there is preserved. - Orders and subscriptions expose the buyer's company.
The embedded
customerobject on order and subscription responses now includescompanyalongside the name and email.
2026-08-07 — Stripe Connect via OAuth
- Connecting Stripe no longer requires installing a Stripe App. A merchant can authorize Throttle through a standard Connect OAuth flow instead, with no keys pasted anywhere. The existing install-link path still works.
2026-08-03 — Production API keys read sk_live_
-
Keys minted for a production environment now carry
sk_live_/pk_live_. They previously readsk_production_/pk_production_. Keys minted before this date remain valid indefinitely — nothing in the auth path parses the environment segment, so both prefixes authenticate. Non-production environments continue to use their own slug, e.g.sk_test_orsk_uat_. -
live,live-*, andproduction-*are reserved environment slugs. Creating a custom environment with one of these names is rejected, so a sandbox environment can never mint a key that looks live.
2026-08-02 — Hosted MCP server and OAuth 2.1
- Throttle is now an OAuth 2.1 authorization server.
PKCE and dynamic client registration, advertised at
/.well-known/oauth-authorization-serverand/.well-known/oauth-protected-resource, with/oauth/authorizeand/oauth/token. Consent is per application. - A hosted remote MCP endpoint at
/mcpspeaking Streamable HTTP, so an MCP client can reach Throttle without running anything locally. -
@usethrottle/mcp0.2.0 adds quote and money write tools, each idempotent and gated behind--allow-writes/--allow-live-writes. See MCP server. - The authorization-code TTL was raised from 60 seconds to 10 minutes on 2026-08-09, since a human completing a consent screen routinely takes longer than a minute.
2026-07-28 — MCP server and /whoami
-
@usethrottle/mcp0.1.0 — a read-only Model Context Protocol server over stdio, with tools scope-filtered against the grants on your API key. - New:
GET /api/v1/whoamiresolves the calling credential to its workspace, application, and environment.
2026-07-27 — Webhook payloads carry customer identity
-
Every
subscription.*payload now includes acustomerobject. Payloads previously carried onlycustomerId, a Throttle UUID that means nothing in your system, so identifying the buyer cost aGET /customers/{id}per event. -
Flat
payment.*payloads that carry anorderIdgaincustomer,customerId, andsubscriptionId. -
The
customerobject carriesemail,firstName,lastName,phone, and both external identifiers —externalIdandexternalCustomerId— because they are not the same field. It is attached at delivery and is absent when the customer row cannot be resolved, so treat it as nullable. -
Webhook coverage
lastEmittedAtis now ISO 8601.
2026-07-19 — Money-correctness: returns, order edits, cancel, currency
Returns & exchanges
- Return refunds now reflect what the buyer actually paid.
The refund for a returned line is its subtotal plus tax, minus
discounts (including a proportional share of order-level code
discounts), prorated exactly across partial-quantity returns.
Previously refunds used bare
unitPrice × quantity, under-refunding tax and over-refunding discounted items.
Orders
-
PATCH /orders/:id/line-itemsnow recalculates tax. When tax is configured for the application, edited orders re-quote tax for the resulting item set (added items no longer land withtaxAmount: 0) and the captured delta charge/refund includes the tax movement. -
POST /orders/:id/cancelnow settles payments. Open authorizations are always voided; passrefundCapturedPayments: trueto also refund captured money. The response reports apaymentActionsarray.
Carts
- Cart currency is validated against the application.
POST /cartsrejects a currency that differs from the application's configured per-environment currency (422currency_mismatch); omittingcurrencynow inherits the application currency instead of silently defaulting to USD. - Legacy deprecated discount types fail validation.
Surviving
free_shipping/buy_x_get_yrows (retired types) now fail checkout validation loudly instead of applying with a silent $0 effect while consuming a usage slot.
2026-07-04 — Embedded checkout: webhooks, receipts, prefill & retry fixes
Webhooks
-
payment.capturedandpayment.vaultednow deliver for embedded checkout. These events (and all webhooks from proxy/embed sessions, includingorder.created) were silently dropped because the emit omitted application context. They now reach every subscribed endpoint with the correct signature.
Emails
-
customer.payment_receiptnow sends for embedded checkout captures. The synchronous embed capture path previously bypassed the internal event bus, so no receipt email fired for card/one-time or subscription checkouts.
Checkout
- Buyer prefill now reaches the checkout UI. Passing
a
customeron session create now pre-fills the buyer's name and address in the hosted/embedded form (the prefill was being stripped from the public session response). - Failed payments are retryable. If a capture fails, returning to the same checkout session now retries cleanly instead of erroring; a duplicate submit returns the existing order without double-charging.
2026-07-04 — Abandoned-cart recovery works end to end
Checkout
- Recovery links can now complete a purchase.
Creating a checkout session against an
abandonedcart now reopens it (status → open), so a buyer who returns via acart.abandonedrecovery link can finish checkout on that same cart. Previously the cart was frozen and completion dead-ended withcart … is in 'abandoned' status.
Webhooks & email
- Guest carts get recovery emails.
The abandoned-cart sweep now sends the
customer.cart_abandonedrecovery email to carts that captured only acustomerEmail(no full customer record), not just carts linked to a customer. - Configure the recovery link.
The recovery URL in the
cart.abandonedwebhook payload and the recovery email is built from your per-appcartRecoveryUrlTemplate(must contain{cartId}) — set it in the dashboard under Abandoned carts, or viaPUT /api/v1/embed-config. Without it, recovery is webhook-only with a null URL.
2026-07-04 — Subscription checkout, typed request bodies, cart lifecycle
API & SDK
- Checkout session request bodies are now documented.
POST /api/v1/checkout/sessionsandPOST /api/v1/checkout/sessions/{id}/completenow publish theirrequestBodyin the OpenAPI spec.@usethrottle/api-client@2.6.1regeneratespostApiV1CheckoutSessions/postApiV1CheckoutSessionsCompletewith a typed body parameter — no more raw-fetch workaround for creating or completing a session. Request/response validation is unchanged.
Checkout
- Plan-based & free-trial subscription checkouts can use an
empty cart.
When a checkout session carries a
recurringblock and its cart has no line items, Throttle now synthesizes a single subscription line item from the plan at completion (amount due today for an immediate charge, or$0for a free trial), so the order converts cleanly. Previously an empty cart failed withcart_empty(“Cart cannot be converted to an order without line items”).recurring.create: 'auto'governs subscription creation after payment; it does not add cart items itself.
Webhooks
- Checkout-session expiry reaches the cart.
A checkout session now stamps its expiry window onto the parent cart,
and when a session expires the cart is released — its
statusmoves toabandonedandcart.abandonedfires (with the standard recovery payload). Previously the cart stayedopenwith no event.
2026-07-04 — Actionable unavailableReason on payment methods
API
-
GET /api/v1/checkout-sessions/{id}/payment-methodsunavailableReason. Whenmethodsis empty because a payment provider is connected but can’t currently render (for example, not yet configured for the checkout’s environment), the response now includes an optionalunavailableReason: { code, message }. Surfacemessageto the buyer instead of a blank “no payment methods” state. The field is additive and only present on the empty path. The list itself now also reflects exactly what the embed will render, so the “available” view and the embed no longer diverge.
2026-06-21 — Cart email capture + richer cart.abandoned payload
API
- Cart
customerEmail.POST /api/v1/cartsandPATCH /api/v1/carts/{id}accept an optionalcustomerEmail— lightweight email capture without a full customer record. The cart response now also returnscustomerEmailand the storedshippingAddress/billingAddress.
Webhooks
- Enriched
cart.abandoned. The payload now includesshippingAddressandbillingAddress(as stored on the cart, ornull), andcustomernow represents a guest captured via the cart’scustomerEmailas{ id: null, email, firstName: null }— so anonymous carts with a captured email are recoverable. All fields remain additive.
SDK
-
@usethrottle/cart:CreateCartInput/UpdateCartInput/CartgaincustomerEmail.@usethrottle/webhook-types:CartAbandonedDatagains the address fields and a nullable customer id.
2026-06-20 — useThrottleCheckout hook
SDK
-
@usethrottle/checkout-react. NewuseThrottleCheckouthook that orchestrates a storefront checkout over a cart session: totals andselectedMethodbound to the cart, one-callselectMethod, astatusstate machine, automatic stale-cart recovery (rebuild + retry oncart_not_open), andcreateSessionreturning thecheckoutSessionIdfor<PaymentEmbed>. See Cart sessions.
2026-06-20 — allowedMethods on payment-only embeds
API
- Fail-loud.
POST /api/v1/checkout-sessions/embed-token(payment-only) now rejectsallowedMethodswith400 allowed_methods_unsupportedinstead of accepting and silently ignoring it. A payment-only embed renders the methods configured on your payment connection; the embed token has no method-restriction field.allowedMethodscontinues to filter the full hosted checkout (the/payment-methodscatalog + payment tiles) — that flow is unchanged.
SDK
-
@usethrottle/checkout-sdk.createEmbedTokenno longer acceptsallowedMethods(it never applied to the payment-only embed).createSessionstill accepts it for the full checkout.
Docs
-
Documented the precedence between session
allowedMethodsand payment connection configuration. See Embedded Checkout.
2026-06-20 — Cancel a checkout session
API
-
DELETE /api/v1/checkout/sessions/{id}now cancels an in-flight session (previously a no-op). It is idempotent, marks the sessioncancelled, and re-opens an associated cart still incheckoutstatus (never a terminalconvertedcart). A completed session returns422 already_completed; an unknown session returns404.
SDK
-
@usethrottle/checkout-sdk. Newcheckout.cancelSession(sessionId)method.
Docs
-
Clarified the session→cart lifecycle: creating a session does not move
the cart out of
open; the cart only becomesconvertedwhen the order is created at session completion. See Embedded Checkout.
2026-06-20 — Canonical cart address + typed cart errors
API
- Canonical cart address.
PATCH /api/v1/carts/{id}now validatesshippingAddress/billingAddressat write time against one canonical shape (CartAddress: requiredaddressLine1,city,countryCode). Non-canonical keys (line1,state,country,zip) are now rejected with avalidation_errornaming the camelCase replacement, instead of being stored verbatim and failing later at checkout withaddress_required.
SDK
-
@usethrottle/cart. Exports the canonicalCartAddresstype (used bycarts.updateand the cart response) and two typed lifecycle errors —CartNotOpenError(409cart_not_open) andCartNotFoundError(404). Both extendThrottleApiError, so existing checks keep working. See Errors.
Docs
- Clarified that selecting a shipping method is a single atomic call returning the full recomputed cart, and that the cart (not a client-side copy) is the source of truth for the selected method and totals. See Cart API.
2026-06-20 — Abandoned-carts read APIs
API
- New endpoints.
GET /api/v1/abandoned-carts(cursor-paginated; each row carriescustomer,total,itemCount,abandonedAt, andrecoveryStatus) andGET /api/v1/abandoned-carts/summary(abandonedCount,abandonedValue,recoveryEmailsSentover a trailing window). Both require thecarts:readscope. Available in@usethrottle/api-client. See API reference.
2026-06-20 — Richer cart.abandoned webhook payload
Webhooks
- Enriched payload. The
cart.abandonedoutbound event now carries the full recovery context indata:customer(id,email,firstName; ornullfor anonymous carts),lineItems,currency, totals (subtotal,taxTotal,shippingTotal,discountTotal,total),itemCount, and arecoveryUrl. This lets ESP integrations (e.g. Klaviyo) drive a recovery flow from the single webhook with no follow-up API call. See Webhooks. - Backward compatible. The change is purely additive —
only
cartIdandsequenceare guaranteed, so existing consumers are unaffected. The envelopeversionstays"1". - Typed.
@usethrottle/webhook-typesnow types the enrichedCartAbandonedData(new fields are optional).recoveryUrlis populated from the app'scartRecoveryUrlTemplatewhen set, otherwisenull.
Embed config
- Per-app abandonment threshold.
PUT /api/v1/embed-confignow acceptscartAbandonmentThresholdMinutes(andGETreturns it): the minutes of inactivity before an open/checkout cart is treated as abandoned by the sweep. Range15–129600(90 days). Passnullto clear; when unset, the platform default of1440(24h) applies. The value is per application and per environment. See API reference.
2026-05-11 — Team management & per-app roles
Workspace invitations
- Two-tier role model. Workspaces now carry three
roles:
owner,workspace_admin, andmember. Members get explicit per-application roles fromadmin,developer,finance, orviewer. See Team management and Permissions. - New invitations + members endpoints.
POST /api/v1/workspaces/:workspaceId/invites,.../invites/:id/resend,.../invites/:id/revoke,GET .../members,GET .../members/me,PATCH .../members/:memberId,DELETE .../members/:memberId,DELETE .../members/:memberId/applications/:applicationId. - Strict email match on accept.
POST /api/v1/invites/acceptnow requires the caller's Clerk verified primary email to match the invite token'semailclaim. Mismatch returns403 invite/email_mismatch. - Permission introspection.
GET /api/v1/auth/permissionsreturns the caller's effectiveworkspaceRoleandappRoleplus the full static catalog. Use it to drive UI gating. - Auth context fields. Server-side handlers now see
auth.workspaceRole,auth.appRole, andauth.workspaceMemberIdon Clerk-authenticated requests. Legacyauth.rolefield preserved.
Emails
-
Four new templates seeded by
@platform/emails:system.team_invite_resent,system.team_invite_accepted,system.team_access_revoked,system.team_role_changed.
Legacy compatibility
-
POST /api/v1/merchants/me/invitesand its/resend,/revokesiblings continue to work — they delegate to the new team-service. Legacy clients sending{ email, role: 'admin' }still receiverole: 'admin'in the response envelope.
2026-05-04 — Collect flags, billing, metadata propagation
Embedded checkout
- Collect flags shipped.
POST /api/v1/checkout/sessionsaccepts a newcollect: { shippingAddress: boolean; billingAddress: boolean }object on the request body. Defaults match historical behaviour (shippingAddress: true,billingAddress: false). See Collection Flags . - Billing address is now first-class.
POST /api/v1/checkout-sessions/:id/completeaccepts newbillingAddress(same shape asshippingAddress) andbillingSameAsShipping: boolean(defaultfalse). Required whencollect.billingAddressis true on the session. -
step: 'billing'postMessage event. The unified/sflow now emits an additionalthrottle.step.changedevent withstep: 'billing'when the buyer reaches the billing form. -
fieldextras onaddress_required422 responses. Validation errors at/completenow include afieldkey (e.g."billingAddress"or"shippingAddress") so the iframe and API integrators can route the error to the right form section. -
Pay button auto-disables until collect-flagged fields are
complete.
Parent-set
submitDisabledstill composes additively — see Parent Controls . -
?mode=payment-onlydeprecated. Still respected client-side for one release. New integrators should setcollect: { shippingAddress: false, billingAddress: false }instead.
Discounts
- Session-create discountCode.
POST /api/v1/checkout/sessionsaccepts a newdiscountCode: stringfield. Validated synchronously; invalid codes return422 discount_invalid. See Discounts.
Metadata + webhooks
- Session metadata propagates to orders.
User-attached
metadataon a checkout session is merged into the order at conversion with precedencecart < session < {customerEmail}. - Reserved keys are stripped server-side.
recurring,customer_prefill,mode,amount,currency, andexternalCartIdare removed from session metadata before persistence; use top-level request fields instead. - Session metadata caps. 50 keys / 10KB
serialized. Over-size payloads return
422 metadata_too_large. - Webhook payloads now carry user metadata.
order.created,payment.captured, andsubscription.createdinclude the mergeddata.metadatabag. See Metadata.