Payments
Embed a Stripe-backed payment button on your site.
Create a payment button in the dashboard once you've connected Stripe, then embed it on your site. Funds settle directly into your own Stripe account.
Embed a payment button
html
<script src="https://app.softsolz.uk/softsolz.js" data-public-key="pk_live_your_key" data-service-id="payments" data-token="your-payment-link-token"></script>Create a payment link from your server
bash
curl -X POST https://app.softsolz.uk/api/v1/services/payments/payment-links \ -H "Authorization: Bearer sk_live_your_key" \ -H "Content-Type: application/json" \ -d '{"name":"Deposit","amount_cents":5000,"currency":"usd"}'Next
Browse every endpoint in the API Reference, or read the product walkthrough on docs.softsolz.uk.