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 plugin 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 Jun 5, 2026·Edit this page