Add credit

Top up your credit.

In case your payment source (credit card) requires 3D validation use the Stripe SDK.

To detect any fraudulent activities and initiate Radar and 3D Secure, integrate handleCardAction from Stripe.js.
Reference: https://stripe.com/docs/js/payment_intents/handle_card_action

Example:

<script src="https://js.stripe.com/v3/"></script>
<script>
   // Retrieve Easyship stripe publishable api key through `GET /2023-01/account/stripe`
   var stripe = Stripe('stripe_publishable_api_key');

   // When `POST /2023-01/account/credit` returns status code 202, retrieve the secret in the response.
   var secret = response.action.client_secret

   // 3D validation
   stripe.handleCardAction(secret).then(function (result) {
     if (result.error) {
       // error handling
     } else {
       // You would receive stripe payment_intent object
       // `POST /2023-01/account/credit/confirm_3ds` with payment_intent.id to confirm credit top-up
     }
   });
 </script>

Required authorization scope: Payment

Language
Credentials
Bearer
token
Click Try It! to start a request and see the response here!