Stripe
VoxyLine creates one provider payment intent per cart/order, returns hosted checkout status, and stores only Stripe references plus card brand/last4.
Needs Stripe keys and webhook secretFor Ecommerce
Your store creates a payment link/session from its backend, redirects the customer to VoxyLine hosted checkout, and receives the final payment reference for fulfillment.
Step 1
curl https://voxyline.com/api/v1/payment-links \ -H "Authorization: Bearer vx_sandbox_dwsmb9BZy9PA5lexhjdZDpn8zDFtZJJRMnlCvMGjAjY" \ -d amount=49.99 \ -d currency=USD \ -d title="Order #1001" \ -d success_url="https://yourstore.com/success" \ -d cancel_url="https://yourstore.com/cart"
Step 2
{
"ok": true,
"id": "plink_...",
"url": "https://voxyline.com/pay/plink_..."
}
Direct API
curl https://voxyline.com/api/v1/payment-intents \ -H "Authorization: Bearer vx_sandbox_dwsmb9BZy9PA5lexhjdZDpn8zDFtZJJRMnlCvMGjAjY" \ -H "Idempotency-Key: order-1001" \ -d amount=49.99 \ -d currency=USD \ -d flow_type=b2p \ -d rail=cards
Provider Deployment
VoxyLine creates one provider payment intent per cart/order, returns hosted checkout status, and stores only Stripe references plus card brand/last4.
Needs Stripe keys and webhook secretVoxyLine issues Terminal connection tokens and tracks smart-reader payments from your POS frontend.
Needs reader setupVoxyLine creates verified customers/funding sources and initiates transfers with source and destination references.
Needs Dwolla production approval