- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
Menu
- Get Started
- Product
- Resources
- Tools & SDKs
- Framework
- Reference
createFulfillmentSets - Medusa Core Workflows Reference
This documentation provides a reference to the createFulfillmentSets
. It belongs to the @medusajs/medusa/core-flows
package.
This step creates one or more fulfillment sets.
1import { createWorkflow } from "@medusajs/framework/workflows-sdk"2import { createFulfillmentSets } from "@medusajs/medusa/core-flows"3 4const myWorkflow = createWorkflow(5 "my-workflow",6 () => {7 const data = createFulfillmentSets({8 "name": "Kirsten",9 "type": "{value}"10 })11 }12)
Input#
CreateFulfillmentSetsStepInput
CreateFulfillmentSetsStepInputThe data to create one or more fulfillment sets.
CreateFulfillmentSetsStepInput
CreateFulfillmentSetsStepInputname
stringThe name of the fulfillment set.
name
stringtype
stringThe type of the fulfillment set.
type
stringThe service zones associated with the fulfillment set.
Output#
FulfillmentSetDTO[]
FulfillmentSetDTO[]
FulfillmentSetDTO[]
FulfillmentSetDTO[]FulfillmentSetDTO
FulfillmentSetDTOThe fulfillment set details.
FulfillmentSetDTO
FulfillmentSetDTOWas this page helpful?