How to enable Stripe Token on a merchant.
Provider as "stripe" for single time use token. Stripe provides a comprehensive suite of payment solutions that allow businesses to accept online payments securely. Their platform supports tokenization, which replaces sensitive card information with a unique token, enhancing transaction security. Stripe's services include payment processing, fraud prevention, and subscription management.
Features
✅ Refund A token payment processed with Stripe can be / according to its status. ✅ Payment Sale Payments are authorized and immediately captured using Token payment methods.
Resources
Configuration
Click here https://dashboard.stripe.com/login?redirect=%2Fsettings%2Fintegration, turn "handle card information directly" on. Contact [email protected] for our most recent Attestation of PCI compliance to share with Stripe. Then you can create a secret key, following these steps, https://stripe.com/docs/keys#create-api-secret-key for use with Authvia.
This table describes the required or possible attributes needed to configure a merchant product for this type.
Name | Type | Description | Rules |
---|---|---|---|
authToken | string | Auth token for authenticating requests to Stripe. Examples: abcd1234. |
Enabling this Product
Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.
{
"line": "payments",
"product": "token",
"provider": "stripe",
"config": {
"authToken": "abcd1234"
}
}