Connect Stripe Express
The provider completes Stripe-hosted onboarding and receives an
acct_ connected account ID.
Axioma Pay gives business owners a simple way to route one-off payments, payment requests and recurring subscription checkout through Stripe Connect Express, with funds settling directly to the provider's connected account.
The business receiving money connects Stripe Express once. Axioma Pay then creates Stripe-hosted payment, invoice or subscription checkout links that the business can place on its website, email to customers, or use inside an ecommerce workflow.
The provider completes Stripe-hosted onboarding and receives an
acct_ connected account ID.
Use Pay Now, Request Payment or Setup Subscription to generate a secure Stripe-hosted checkout or invoice flow.
Add the checkout link to WooCommerce, Shopify, a website button, an invoice email or a customer message.
WooCommerce and Shopify are common examples, but Axioma Pay is designed to work with many ecommerce, membership, education and headless commerce systems that can redirect customers to a secure hosted checkout.
These examples help business owners understand what kind of connection is usually needed before asking their web designer, agency or technical support provider to connect Axioma Pay.
Give customers a familiar checkout button on ecommerce stores, client
portals, invoices, booking pages and subscription flows. Copy the version
that matches your transaction intent, then replace the placeholder
href with the payment, invoice or subscription link generated
by Axioma Pay.
Best for standard product purchases, service bookings and checkout pages.
<a href="YOUR_AXIOMA_PAY_CHECKOUT_LINK"
style="display: inline-block;
background: linear-gradient(135deg, #0B131F 0%, #1E293B 60%, #C29B47 100%);
padding: 14px 24px; border-radius: 8px; font-weight: 800;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 4px 12px rgba(11, 19, 31, 0.25);">
<span style="color: #E5D08C;">Pay with</span>
<span style="color: #FFFFFF; margin-left: 4px;">Axioma Pay</span>
</a>
Best for SaaS platforms, memberships, retainers and recurring plans.
<a href="YOUR_AXIOMA_PAY_SUBSCRIPTION_LINK"
style="display: inline-block;
background: linear-gradient(135deg, #0B131F 0%, #1E293B 60%, #C29B47 100%);
padding: 14px 24px; border-radius: 8px; font-weight: 800;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 4px 12px rgba(11, 19, 31, 0.25);">
<span style="color: #E5D08C;">Subscribe with</span>
<span style="color: #FFFFFF; margin-left: 4px;">Axioma Pay</span>
</a>
Ideal for freelancers, service providers, B2B portals and quote acceptance flows.
<a href="YOUR_AXIOMA_PAY_INVOICE_LINK"
style="display: inline-block;
background: linear-gradient(135deg, #0B131F 0%, #1E293B 60%, #C29B47 100%);
padding: 14px 24px; border-radius: 8px; font-weight: 800;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 4px 12px rgba(11, 19, 31, 0.25);">
<span style="color: #E5D08C;">Pay Invoice via</span>
<span style="color: #FFFFFF; margin-left: 4px;">Axioma Pay</span>
</a>
Designed for tight checkout grids, sticky headers and quick-buy surfaces.
<a href="YOUR_AXIOMA_PAY_CHECKOUT_LINK"
style="display: inline-flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, #0B131F 0%, #1E293B 60%, #C29B47 100%);
padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 14px;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 2px 8px rgba(11, 19, 31, 0.2);">
<span style="color: #FFFFFF;">Axioma</span>
<span style="color: #E5D08C; margin-left: 4px;">Pay</span>
</a>
A clean border option for white cards, bright landing pages and minimalist stores.
<a href="YOUR_AXIOMA_PAY_CHECKOUT_LINK"
style="display: inline-block;
background: #FFFFFF; border: 2px solid #0B131F;
padding: 12px 22px; border-radius: 8px; font-weight: 800;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);">
<span style="color: #C29B47;">Pay with</span>
<span style="color: #0B131F; margin-left: 4px;">Axioma Pay</span>
</a>
Tailored for cart summary pages, checkout drawers and conversion-focused payment panels.
<a href="YOUR_AXIOMA_PAY_CHECKOUT_LINK"
style="display: block; width: 100%; text-align: center; box-sizing: border-box;
background: linear-gradient(135deg, #0B131F 0%, #1E293B 60%, #C29B47 100%);
padding: 16px 20px; border-radius: 8px; font-weight: 800; font-size: 16px;
text-decoration: none; font-family: sans-serif;
box-shadow: 0 4px 14px rgba(11, 19, 31, 0.3);">
<span style="color: #E5D08C;">Complete Checkout with</span>
<span style="color: #FFFFFF; margin-left: 4px;">Axioma Pay</span>
</a>
| Scenario | Primary Text | Accent Text | Recommended Use |
|---|---|---|---|
| One-Off Checkout | Pay with | Axioma Pay | Standard product or service cart |
| Subscriptions | Subscribe with | Axioma Pay | SaaS, recurring memberships, retainers |
| Invoicing | Pay Invoice via | Axioma Pay | Freelancers, B2B quote acceptance, direct billing |
| Express Mode | - | Axioma Pay | Quick-buy popups, sticky bottom bars |
| Light Theme | Pay with | Axioma Pay | Bright UI backgrounds and modern minimalist stores |
Business owners can start with hosted links. Developers can use the API for approved server-to-server ecommerce, CRM and accounting integrations.
Base URL:
https://ebmtpndduduecwnziiig.supabase.co/functions/v1
Provider onboarding:
POST /onboard-user
One-off ecommerce checkout:
POST /create-checkout-session
{ "mode": "payment", "connectedAccountId": "acct_xxxx", "amountInCents": 5000, "currency": "gbp", "clientEmail": "customer@example.com", "reference": "Order 1001" }
Recurring subscription checkout:
POST /create-checkout-session
{ "mode": "subscription", "connectedAccountId": "acct_xxxx", "amountInCents": 1500, "currency": "gbp", "frequency": "month", "clientEmail": "customer@example.com", "reference": "Monthly plan" }
Invoice or payment request:
POST /create-invoice
Read-only Stripe event sync:
POST /stripe-webhook
Axioma Pay routes software instructions to Stripe Connect Express. The provider receives funds through Stripe. Axioma Pay does not hold, custody or control customer funds.