Let's Begin!
Overview
Use Stripe Elements, our prebuilt UI components, to create a payment form that lets you securely collect a customer’s card details without handling the sensitive data. The card details are then converted to a representative Token that you can safely send to your servers. Your server can use that token to create a charge.
1. Test your dolbik API
Use our official libraries for access to the Stripe API from your application:
curl https://api.stripe.com/v1/charges \
-u sk_test_zRAVTq00CfAKcsgTW9LuM3q000nl4g2ob3: \
-d amount=999 \
-d currency=usd \
-d description="Example charge" \
-d source=tok_visa
2. Integrate your Backend with your dolbik API
To securely collect card details from your customers, Stripe Elements creates UI components for you that are hosted by Stripe. They are then placed into your payment form, rather than you creating them directly.
curl https://api.stripe.com/v1/charges \
-u sk_test_zRAVTq00CfAKcsgTW9LuM3q000nl4g2ob3: \
-d amount=999 \
-d currency=usd \
-d description="Example charge" \
-d source=tok_visa
3. Integrate your UI with yourdolbik Checkout UI
To securely collect card details from your customers, Stripe Elements creates UI components for you that are hosted by Stripe. They are then placed into your payment form, rather than you creating them directly.
