post https://api.easyship.com/2023-01/account/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
This API is currently in beta and is available upon request. Get in touch with your account manager or Easyship Support Team to enable it.