VoxyLine DevelopersHosted checkout and payment API
Platform

For Ecommerce

Use VoxyLine without building your own payment frontend.

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

Create a checkout link

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

Redirect buyer

{
  "ok": true,
  "id": "plink_...",
  "url": "https://voxyline.com/pay/plink_..."
}

Direct API

Server-side payment intent

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

What changes for production

Cards

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 secret
POS

Stripe Terminal

VoxyLine issues Terminal connection tokens and tracks smart-reader payments from your POS frontend.

Needs reader setup
ACH

Dwolla

VoxyLine creates verified customers/funding sources and initiates transfers with source and destination references.

Needs Dwolla production approval