- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
Menu
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
deleteOrderShippingMethodAdjustments - Order Module Reference
This documentation provides a reference to the deleteOrderShippingMethodAdjustments
method. This belongs to the Order Module.
Note: You should only use this methods when implementing complex customizations. For common cases, check out available workflows instead.
deleteOrderShippingMethodAdjustments(adjustmentIds, sharedContext?): Promise<void>#
This method deletes shipping method adjustments by their IDs.
Example#
Parameters#
adjustmentIds
string[]The IDs of shipping method adjustments.
Returns#
Promise
Promise<void>Resolves when the shipping method adjustments are deleted successfully.
deleteOrderShippingMethodAdjustments(adjustmentId, sharedContext?): Promise<void>#
This method deletes a shipping method adjustment by its ID.
Example#
Parameters#
adjustmentId
stringThe adjustment's ID.
Returns#
Promise
Promise<void>Resolves when the shipping method adjustment is deleted successfully
deleteOrderShippingMethodAdjustments(selector, sharedContext?): Promise<void>#
This method deletes shipping method adjustments matching the specified filters.
Example#
Parameters#
selector
Partial<OrderShippingMethodAdjustmentDTO>The filters specifying which shipping method adjustments to delete.
selector
Partial<OrderShippingMethodAdjustmentDTO>Returns#
Promise
Promise<void>Resolves when the shipping method adjustments are deleted.
Was this page helpful?