> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Best Practices

> You can use Razorpay Custom Checkout to customise the checkout experience as per your requirements and use it as a white-label solution.

Given below are some of the best practices to be followed for smoother integration and payment experience.

## 1. Integrate Payments Rainy Day Kit

Use Payments Rainy Day kit to overcome payments exceptions such as:

* [Late Authorisation](/payments/payments/late-authorisation)
* [Payment Downtime](/api/payments/downtime)
* [Payment Errors](/errors)

## 2. Integrate Orders API

Orders help in binding multiple payment attempts against a single order. This helps to prevent multiple payments. [Integrate with Orders API](/payments/orders) on your server-side and pass the `order_id` to Checkout.

## 3. Verify Signature to Avoid Data Tampering

Verifying the Signature is a mandatory step that lets you confirm the authenticity of the details returned to the Checkout form for successful payments. Know more about [how to verify payment signature](/payments/payment-gateway/web-integration/custom/build-integration#15-verify-payment-signature).

## 4. Check Payment or Order Status before Providing Services

Check the payment/order status, that is, if the payment's status is `captured` and the order's status is `paid` before proving the services to the customers.

You can determine payment and order status using:

* [Fetch All Payments for an Order API](/api/orders/fetch-payments)
* [Fetch Status of a Payment using Payment id API](/api/payments/fetch-with-id)
* [Fetch Status of an Order using Order id API](/api/orders/fetch-with-id)

## 5. Implement Webhooks

Implement webhooks or the query API to avoid any cases of callback failure (drop-offs could be connectivity or network failure) and to verify the payment details via an S2S call. Some of the webhook events you should enable are:

* `payment.captured`
* `payment.failed`
* `order.paid`

Know more about [Webhooks](/webhooks).

## 6. Implement Callback URL

Implement `callback_url` if your customers make online payments on browsers such as Instagram, Facebook Messenger, Opera, UC browsers and so on. This is because these browsers do not support i-frame.

## 7. Implement Card Saving and Validation Features

Follow these best practices if you accept card payments from customers:

1. Validate the card number to avoid any payment failures. Know more about [Card Validation](/payments/payment-gateway/web-integration/custom/input-restriction).
2. Use the [Saved card](/payments/payment-gateway/web-integration/custom/features/saved-cards) feature provided by Razorpay for better user experience and prevent payment failures because of incorrect card details.

## 8. Implement VPA Saving and Validation Features

Follow these best practices if you accept UPI collect payments from customers:

<Steps>
  <Step title="Step 1">
    Validate the VPA before initiating the payment request. Know more about [VPA Validation](/payments/payment-gateway/web-integration/custom/features/validate-vpa).
  </Step>

  <Step title="Step 2">
    Add a custom UPI collect expiry based on the business requirement to provide enough time for the customer to complete the payment.
  </Step>

  <Step title="Step 3">
    Use the [Saved VPA](/payments/payment-gateway/web-integration/custom/features/saved-vpa) feature provided by Razorpay to provide a better customer experience and avoid payment failures.
  </Step>
</Steps>
