Configuring Solix Payments
The configuration file for Solix Payments is relatively simple in comparison to other modules. It is broken down into 2 parts, credentials and invoice settings. You can see the configs as below.
Credentials
Below is the credentials part of the configruation file. Here is it asking for the PayPal clientId and PayPal clientSecret. These can be obtained from paypal.com/developers. Please ensure that they are LIVE credentials, otherwise the bot will not function.
###############
# CREDENTIALS #
###############
enabled: true # Whether the module is enabled
paypalCredentials:
clientId: "CLIENT_ID" # PayPal Client ID
clientSecret: "CLIENT_SECRET" # PayPal Client Secret
Invoice Settings
These are the simple settings which will be displayed on your invoice. Again, it is relatively simple and self-explanatory.
####################
# INVOICE SETTINGS #
####################
paypalInvoiceSettings:
invoiceNote: "Thank you for your bussiness" # Note to users displayed at bottom of invoice
termsAndConditions: "Terms apply" # Terms and conditions of your service (Link to a document if needed)
invoicer:
bussinessName: "Solix" # Your company name
logo: "https://example.com/logo.PNG" # Your company logo
Last updated