Learning Resources

dismissRemoteLinkStep - Helper Steps API Reference

This documentation provides a reference to the dismissRemoteLinkStep step. It belongs to the @medusajs/core-flows package.

Example#

Code
1import {2  createWorkflow3} from "@medusajs/workflows-sdk"4import {5  dismissRemoteLinkStep6} from "@medusajs/core-flows"7import {8  Modules9} from "@medusajs/utils"10
11const helloWorldWorkflow = createWorkflow(12  "hello-world",13  () => {14    dismissRemoteLinkStep([{15      [Modules.PRODUCT]: {16        product_id: "prod_123",17      },18      "helloModuleService": {19        my_custom_id: "mc_123",20      },21    }])22  }23)

Input#

DismissRemoteLinksStepInputDismissRemoteLinksStepInput

Output#

LinkDefinition[]LinkDefinition[]
Was this page helpful?