Skip to main content
Skip to main content

createPriceListRules - Pricing Module Reference

Beta

This documentation provides a reference to the createPriceListRules method. This belongs to the Pricing Module.

This method is used to create price list rules.

Example

import {
initialize as initializePricingModule,
} from "@medusajs/pricing"

async function createPriceListRules (items: {
rule_type_id: string
price_list_id: string
}[]) {
const pricingService = await initializePricingModule()

const priceListRules = await pricingService.createPriceListRules(items)

// do something with the price list rule or return them
}

Parameters

The price list rules to create.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<PriceListRuleDTO[]>Required
The created price list rules.
Was this section helpful?