[
{
"title":"Access to API",
"link":"https://docs.solidgate.com/payments/integrate/access-to-api/",
"text":"Understand how Solidgate authenticates your API requests and provides validation errors.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/08/One-time.svg"
}
,
{
"title":"Integrate",
"link":"https://docs.solidgate.com/payments/integrate",
"text":"Explore Solidgate integration options, payment methods, and merchant website integration methods.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/08/Custom-Built-Rules.svg"
}
,
{
"title":"Testing",
"link":"https://docs.solidgate.com/payments/testing/",
"text":"Simulate payments to test your integration before launching in production.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/07/integration.svg"
}
]
Accept and manage credit card payments from your customers
Overview
Cards are the most popular payment method globally, offering convenience and widespread acceptance. The Solidgate allows developers to easily integrate card payments and cater to this preference, providing a robust, secure, and flexible solution.
The
Solidgate
API
offers developers secure transactions with 3D Secure, tokenization for easier future payments and seamless recurring transactions.
Please, note that only PCI DSS certified merchants are eligible for full API considering that the merchant collects sensitive card data and hosts payment form. Using
Guide
Understand how to integrate the payment form into your product.
payment form
or
Guide
Easily build a safe and simple payment page with our straightforward, step-by-step guide.
payment page
, the merchant without PCI DSS certification can process payments.
The
charge
request, a primary operation, withdraws funds from cardholder accounts and can utilize 3D Secure for verification. Successfully completed operations result in funds withdrawal or hold (in case if type auth is sent).
Recurring payment operations differ from charges as they use a previously obtained token instead of cardholder data. Some recurring transactions, such as one-click payments, may require 3D Secure verification, necessitating the display of a bank page (ACS URL) for the user, which can be acquired through notifications or order status requests.
Resign 1-click enables token-based transactions (1-click payments) with additional CVV verification, exclusive to PCI-DSS certified merchants. Resign 3DS involves a resign request and a 3D Secure verification URL redirect.
The void request serves to nullify pre-existing
auth
transactions by revoking the initial authorization. Be advised that void method can only be executed for auth transaction.
The settle method facilitates the settlement of previously
auth
transactions. Be advised that if the subsequent settle
amount
is less than the initial
auth
transaction
amount
, the difference will be refunded to the cardholder’s account.
A refund constitutes a transactional request to revert funds to the cardholder’s account, and it can only be executed for successfully completed transactions.
The check order status request retrieves the present status of a given order. If a transaction is undergoing 3DS verification, the response will indicate an order status of
3ds_verify
.
The get ARN codes request allows to obtain ARN codes for specific orders, providing essential information about refunds, currencies, and transaction statuses.
Auto-settle
Auto-settle is a feature that automatically settles orders if you provide a settle_interval value in your charge requests with the type auth. If you enable this feature, we will automatically send transactions for clearing after a specified delay in hours. In the event that the first settlement transaction is unsuccessful, we will attempt to settle 6 more times to prevent financial losses.
Auto settle will not be created if the client sends a settle_interval request with null. In this case, it is necessary to manually initiate the settlement process. Additionally, auto settle won’t be performed if there’s at least one void transaction within a payment.
settle_interval
parameter has a limit of 7 days, which is equivalent to 168 hours.
3DS verification
Solidgate provides 3D Secure support for payments, enhancing security measures for both merchants and customers.
To
Guide
This process ensures secure, reliable payment processing using 3D Secure authentication to prevent fraud.
process a payment as a 3D Secure payment
, pass the force3ds parameter as a boolean with a default value of true. Be aware that 3DS may be triggered by either our side or the processor’s side.
When implementing 3DS payments, be prepared to display the 3DS bank page (ACS URL) to the user after initiating a recurring request with a verify_url. The request process for recurring 3DS transactions is identical to that of standard recurring methods, ensuring a seamless integration experience.
Additionally, to handle 3DS transactions, make sure to set up success and fail URLs for browser redirects after a 3D Secure payment, either successful or unsuccessful. Provide necessary information for the frictionless flow of 3D Secure 2.0, such as browser details, time zone offset, and user-agent.
The 3DS may be triggered either from our side or from the processor's side.
Charge without CVV
Processing payments without CVV simplifies customer interactions, leading to higher conversion rates and satisfaction. Allowing transactions without CVV for specific use cases minimizes declines and improves payment success rates. Merchants offering
Guide
Create and maintain a stable and healthy business subscription model.
subscription services
or recurring billing benefit from reduced failed payments, ensuring consistent revenue and enhanced customer retention.
In case you store card details and want to transfer payments from another provider to Solidgate, it is possible to perform a сharge without CVV. This can be done under the following conditions when card details (PAN, expiration date) are stored in your database and the first payment with a CVV-card was processed by another provider.
Our payment method is used to pay with not the full card data (card number and expiration date) for different payment types (please always provide payment_type for charge payments without CVV):
installment Merchant-initiated debit for credit/installment (Financial institutions).
retry Not regular cash withdrawals (depending on the trigger, the frequency, and amount of write-offs, in this case, is determined by the point of sale itself).
If a card payment transaction (charge transaction) fails, it can be attributed to various reasons such as insufficient funds, etc. However, if the payment is unsuccessful, it is not always necessary to cancel the order and lose the payment. Instead, a retry payment attempt can be made using a payment token.
A payment token is a unique identifier generated during a charge operation and used to identify data (such as credit card information) for future transactions.
If the charge payment fails due to a network error or a decline from the issuing bank, a recurring request needs to be made using the token from the unsuccessful first attempt. This allows for a seamless experience for the customer and can increase the chances of a successful transaction and avoid the loss of payment.
It is important to note that our product enables merchants to organize retry logic on their part. There are several key points to implementing retry logic:
Retry logic:
Retry only card payments: Retry logic should exclude
Guide
Improve your checkout conversion by accepting payments via Apple Pay.
Apple Pay
and
Guide
Improve your checkout conversion by accepting payments via Google Pay.
Google Pay
transactions (those with the CRYPTOGRAM_3DS data type). A payment token is issued exclusively for successful Apple Pay and Google Pay payments, eliminating the need to retry these payment types.
Limit on the number of retries: Retry logic should be configured with a limit on the number of retries, to prevent infinite retries and unnecessary charges to the customer’s payment method. That is, the system must stop retrying the payment after a certain number of retries.
The interval between retry attempts: To avoid overloading the issuing bank with too many requests in a short period of time (which may be perceived as fraud), Retry logic should include a back-off time between retries, such as waiting a few minutes before trying again or to increase the time between retries as the number of failed attempts increases.
Handling of decline reasons: Retry logic should be able to handle decline reasons for rejection and respond appropriately. For example, repeating attempts when receiving a permissible decline code (incorrect card number) and, at the same time, analyzing/counting and setting limits on identical decline codes
Customizable retry rules: Retry logic can allow for customizable retry rules, such as retrying only on specific decline codes.
Cancellation or refund: If the payment fails after several retries, it is desirable to have a way to cancel or refund the payment to avoid multiple deductions from the customer’s payment method.
Handling of declined transactions: Retry logic must handle declined transactions in a specific way, such as by prompting the customer to update their payment information or by offering alternative payment methods.
Notification: On the merchant side, it is necessary to additionally notify the customer of the result of the transaction, successful or unsuccessful.
Retry history tracking: This information can be used to analyze transaction patterns and improve retry logic. It is desirable for the merchant to have a system that can track the history of retry attempts for transaction, including the number of retry attempts, the time of each retry attempt, and the result of each retry attempt.
It is important to note that retry logic must be implemented with caution to ensure that the customer's payment details are secure and to avoid any unexpected charges. Retry logic can improve the success rate of the transactions and provide a better user experience. It is always recommended testing retry logic and monitor it in production to make sure it is working as expected.
If you’re using the recurring method for payment retries, you may pass the corresponding value in the
traffic_source
field (please inform your manager of the value you’ll be using so that). We can suggest using the value retry for the
traffic_source
field, but the client should inform us of what they will specify in this field, and we will configure our processing cards accordingly.
This is necessary so that we can differentiate between regular recurring payments and payment retry attempts.
Handling of decline reason
The system can include error handling mechanisms to handle any errors that occur during the retry process and to ensure that the customer is informed of the issue and provided with an appropriate resolution. You should identify the reason for the decline when the payment is declined. There could be several reasons for a decline, such as insufficient funds, expired cards, or invalid card details.
Here is an example of certain reasons for a declined transaction, where there is still a chance of a successful payment:
Guide
The general group of declines. The card issuing bank did not complete the transaction successfully.
0.01 General decline