Adds a list of pricing plans ID
(SDK | REST)
to a service's payment.pricingPlanIds
array.
The call doesn't validate whether the service's payment.options.pricingPlan
is set to true
. If it's set to false
, customers aren't able to pay
for their bookings using pricing plans. You can call Update Service
(SDK | REST)
to change a service's supported payment methods.
You can only call this method when authenticated as a Wix app or Wix user identity.
function enablePricingPlansForService(
serviceId: string,
pricingPlanIds: Array<string>,
): Promise<EnablePricingPlansForServiceResponse>;
import { services } from "@wix/bookings";
async function enablePricingPlansForService(serviceId, pricingPlanIds) {
const response = await services.enablePricingPlansForService(
serviceId,
pricingPlanIds,
);
}
There are 2 errors with this status code.
This method may also return standard errors. Learn more about standard Wix errors.