Stripe- Multiuse Token

How to enable Stripe- Multiuse Token CRM on a merchant.

Provider as "stripe-multiuse" for multiuse 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

Create Customer A customer created within Authvia platform will be pushed to Stripe- Multiuse Token.

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.

NameTypeDescriptionRules
authTokenstring(required) Auth token for authenticating requests to Stripe. Examples: abcd1234.
connectedActIdstringconnectedActId to be used for authorize for connected account which will be given by stripe while setup the account. ConnectedActId must contain only as per given by 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": "customers",
  "product": "crm",
  "provider": "stripe-multiuse",
  "config": {
    "authToken": "abcd1234",
    "connectedActId": "abcd1234"
  }
}