Wix Plans and WixPay Question

We are integrating the wixPaidPlans API into our website and we have some questions that we couldn’t find answers to anywhere.

We have been following the tutorial and API’s available, but couldn’t find answers.

Here are the questions:

  1. When using the following code, is there a way to pass an object userInfo to the orderPlan function? Similar to the createPayment function in the wix API?

Our Goal is to “skipUserInfoPage”

wixPaidPlans.orderPlan(planId)
  .then((myPurchase) => {
     wixPay.startPayment(myPurchase.wixPayOrderId, {"showThankYouPage": false, "skipUserInfoPage": true})
       .then(async (result) => {
         //do something
       });
 });

  1. When using the wixPay API with the wixPaidPlans API is the customer payment set for recurring payments?

We are using wixPay in other areas of our website, so we’d like to keep things consistent throughout the site when it comes to payment, but we also want customers to have automatic recurring payments.

Any input would be greatly appreciated.