--- displayed_sidebar: pricingReference badge: variant: orange text: Beta slug: /references/pricing/createPriceSetMoneyAmountRules sidebar_label: createPriceSetMoneyAmountRules --- import ParameterTypes from "@site/src/components/ParameterTypes" # createPriceSetMoneyAmountRules - Pricing Module Reference This documentation provides a reference to the `createPriceSetMoneyAmountRules` method. This belongs to the Pricing Module. This method is used to create new price set money amount rules. A price set money amount rule creates an association between a price set money amount and a rule type. ## Example ```ts import { initialize as initializePricingModule, } from "@medusajs/pricing" async function createPriceSetMoneyAmountRules (priceSetMoneyAmountId: string, ruleTypeId: string, value: string) { const pricingService = await initializePricingModule() const priceSetMoneyAmountRules = await pricingService.createPriceSetMoneyAmountRules([ { price_set_money_amount: priceSetMoneyAmountId, rule_type: ruleTypeId, value } ]) // do something with the price set money amount rules or return them } ``` ## Parameters ## Returns