Skip to main content
Skip to main content

create

This method is used to create a stock location.

Example

import {
initialize as initializeStockLocationModule,
} from "@medusajs/stock-location"

async function createStockLocation (name: string) {
const stockLocationModule = await initializeStockLocationModule({})

const stockLocation = await stockLocationModule.create({
name
})

// do something with the stock location or return it
}

Parameters

The details of the stock location to create.
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<StockLocationDTO>Required
The created stock location's details.
Was this section helpful?