Steadfast Fulfillment Provider
The Steadfast Fulfillment Provider integrates Steadfast courier services with your Medusa store, allowing for automated order fulfillment and tracking.
Configuration
Section titled “Configuration”You need to register the provider in your medusa-config.js file.
module.exports = defineConfig({ // ... modules: [ { resolve: "@medusajs/medusa/fulfillment", options: { providers: [ { resolve: "@crza69/medusa-plugins/providers/steadfast", id: "steadfast", options: { apiKey: process.env.STEADFAST_API_KEY, secretKey: process.env.STEADFAST_SECRET_KEY, }, }, ], }, }, ],});Environment Variables
Section titled “Environment Variables”Make sure to add the following environment variables to your .env file:
STEADFAST_API_KEY=<your_api_key>STEADFAST_SECRET_KEY=<your_secret_key>Features
Section titled “Features”- Order Creation: Automatically creates an order in the Steadfast system when fulfillment is created in Medusa.