Command Palette

Search for a command to run...

Getting Started with ApiShip for Medusa

In this document, you’ll learn how to install and configure the ApiShip fulfillment provider for Medusa.

Requirements

Installation

yarn add @gorgo/medusa-fulfillment-apiship
# or
npm install @gorgo/medusa-fulfillment-apiship

Configuration

Add the provider configuration in your file of the Medusa admin application:

// ...
module.exports = defineConfig({
// ...
modules: [
{
resolve: "@medusajs/medusa/fulfillment",
options: {
providers: [
{
resolve: "@gorgo/medusa-fulfillment-apiship/providers/fulfillment-apiship",
id: "apiship",
options: {},
},
],
},
},
],
plugins: [
// ...
{
resolve: "@gorgo/medusa-fulfillment-apiship",
options: {},
},
],
})