deleteOrderChangeActionsStep - Medusa Core Workflows Reference
This documentation provides a reference to the deleteOrderChangeActionsStep
. It belongs to the @medusajs/medusa/core-flows
package.
This step deletes order change actions.
1import { createWorkflow } from "@medusajs/framework/workflows-sdk"2import { deleteOrderChangeActionsStep } from "@medusajs/medusa/core-flows"3 4const myWorkflow = createWorkflow(5 "my-workflow",6 () => {7 const data = deleteOrderChangeActionsStep({8 "ids": [9 "id_DyCmYGcYUK82owmJ2Zif"10 ]11 })12 }13)
Input#
DeleteOrderChangeActionsStepInput
DeleteOrderChangeActionsStepInputThe details of deleting order change actions.
DeleteOrderChangeActionsStepInput
DeleteOrderChangeActionsStepInputids
string[]The IDs of the order change actions to delete.
ids
string[]Was this page helpful?