> ## Documentation Index
> Fetch the complete documentation index at: https://docs.y.uno/llms.txt
> Use this file to discover all available pages before exploring further.

# Provider Installments

export const Video = ({src}) => {
  return <div style={{
    backgroundColor: "#FFFFFF",
    padding: "16px",
    display: "flex",
    justifyContent: "center",
    borderRadius: "14px"
  }}>
      <video src={src} loop autoPlay muted playsInline style={{
    width: "100%",
    height: "100%",
    borderRadius: "14px",
    display: "block",
    objectFit: "cover",
    backgroundColor: "rgba(0, 0, 0, 0)",
    objectPosition: "50% 50%",
    boxShadow: "0px 0px 0px 0px rgba(40, 42, 47, 0.05), 0px 3px 6px 0px rgba(40, 42, 47, 0.05), 0px 11px 11px 0px rgba(40, 42, 47, 0.04), 0px 25px 15px 0px rgba(40, 42, 47, 0.02), 0px 44px 18px 0px rgba(40, 42, 47, 0.01), 0px 69px 19px 0px rgba(40, 42, 47, 0.00)"
  }} />
    </div>;
};

**Provider** installment is when the merchant does not have a commercial agreement for a defined set of installments, so they use the installments defined by the payment processor. Yuno consults the provider of your choosing in order to get the installments available to offer your customers for each transaction.

<Video src="https://github.com/writechoiceorg/yuno-images/raw/main/doc/yourPaymentsOperationSystem/provider.mp4" />

### How to use provider installments?

While configuring your provider [Connection](/docs/connections) in Yuno Dashboard, you can enable the installments available for the provider so we can use them in the Credit card form of the SDK for the customer to select from. For this scenario, there is no need to create a plan, as Yuno will use the plan defined by your payment processor.

<Warning>
  **Secure Fields SDK**

  When using Secure Fields SDK integration, you will need to [enable the installments option](/docs/sdks/customization/secure-fields/payment-secure-fields) while starting the checkout process.
</Warning>

This option is not enabled for all providers, only the ones that have Installment services that Yuno can access to get the information from. If you consider that a provider should have this feature enabled, please reach out to your account manager.

<Frame>
  <img src="https://mintcdn.com/yuno-3979e326/m5ay49t24ir2tLEj/images/reference/provider-installments/image1.png?fit=max&auto=format&n=m5ay49t24ir2tLEj&q=85&s=1fc04b1155b48d297478e035fdca6d38" width="2520" height="1311" data-path="images/reference/provider-installments/image1.png" />
</Frame>

<Danger>
  **Routing Configuration Warning**

  While setting your [route](docs/using-yuno/dashboard-overview/routing) for the Card payment method, remember that having a fallback for a provider that has "Provider installments" is not supported, as different providers handle different types of installment plans. It can cause a processing error in the fallback.
</Danger>
