> For the complete documentation index, see [llms.txt](https://zakariaes-organization.gitbook.io/saascore-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zakariaes-organization.gitbook.io/saascore-docs/configuration/affiliate-program.md).

# Affiliate program

you can easily enable/disable the affiliate-program related sections from the config file (/lib/config/main.ts)

```jsx
   [...,
   affiliateProgram: {
        enabled: true,
        paymentMethods: [
            {
                name: "PAYPAL",
                label: "Paypal",
                icon: Icons.paypal,
            },
            {
                name: "PAYONEER",
                label: "Payoneer",
                icon: Icons.payoneer,
            },
            {
                name: "WISE",
                label: "Wise",
                icon: Icons.wise,
            },
        ],
    },
    ...etc]
```

&#x20; PS: Your affiliate program payment methods should be determined at both the config object level (/lib/config/main.ts) and the Prisma schema level.

```prisma
enum SelectedPaymentMethod {
  PAYONEER
  PAYPAL
  WISE
}
```
