Command Palette

Search for a command to run...

Getting Started with ApiShip for Medusa (legacy v1)

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

Warning: 

This guide covers configuring the legacy 1.x version, where you set the plugin options in . The current version 2 keeps these settings in the Integration Module, so a store admin edits them in Admin without changing configuration files or redeploying. For a new installation, follow Getting Started with ApiShip for Medusa.

Requirements


Installation

yarn add @gorgo/medusa-fulfillment-apiship

Configuration

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

medusa-config.ts
1// ...
2module.exports = defineConfig({
3 // ...
4 modules: [
5 {
6 resolve: "@medusajs/medusa/fulfillment",
7 options: {
8 providers: [
9 {
10 resolve: "@gorgo/medusa-fulfillment-apiship/providers/fulfillment-apiship",
11 id: "apiship",
12 options: {},
13 },
14 ],
15 },
16 },
17 ],
18 plugins: [
19 // ...
20 {
21 resolve: "@gorgo/medusa-fulfillment-apiship",
22 options: {},
23 },
24 ],
25})
Edited Sep 18, 2026·Edit this page