Retrieves a discount rule.
The getDiscountRule()
function returns a Promise that resolves when the specified discount rule is retrieved.
You can only call this method when authenticated as a Wix app or Wix user identity.
function getDiscountRule(discountRuleId: string): Promise<DiscountRule>;
ID of the discount rule to retrieve.
import { discountRules } from "@wix/ecom";
async function getDiscountRule(discountRuleId) {
const response = await discountRules.getDiscountRule(discountRuleId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.