Skip to main content
Skip to main content

deleteMoneyAmounts - Pricing Module Reference

Beta

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

This method deletes money amounts by their IDs.

Example

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

async function deleteMoneyAmounts (moneyAmountIds: string[]) {
const pricingService = await initializePricingModule()

await pricingService.deleteMoneyAmounts(
moneyAmountIds
)
}

Parameters

idsstring[]Required
The IDs of the money amounts to delete.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<void>Required
Resolves when the money amounts are successfully deleted.
Was this section helpful?