Skip to main content
POST
/
api
/
v1
/
orders
/
{order_id}
/
fulfillments.json
Create Fulfillment
curl --request POST \
  --url https://api.launchmystore.io/api/v1/orders/{order_id}/fulfillments.json \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "line_items": [
    {
      "id": "<string>",
      "quantity": 123
    }
  ],
  "tracking_number": "<string>",
  "tracking_url": "<string>",
  "tracking_company": "<string>",
  "notify_customer": true
}
'
{
  "success": true,
  "data": {
    "id": "ful_new456",
    "order_id": "ord_xyz789",
    "status": "pending",
    "tracking_number": "1Z999AA10123456784",
    "tracking_url": "https://ups.com/track?num=1Z999AA10123456784",
    "tracking_company": "UPS",
    "line_items": [
      {
        "id": "li_001",
        "quantity": 2,
        "title": "T-Shirt - Red / Medium"
      }
    ],
    "notify_customer": true,
    "created_at": "2024-01-20T14:30:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

order_id
string
required
The order ID

Body Parameters

line_items
array
required
Items to fulfill
tracking_number
string
Carrier tracking number
tracking_url
string
Custom tracking URL
tracking_company
string
Carrier name (e.g., “UPS”, “FedEx”, “USPS”, “DHL”)
notify_customer
boolean
default:"true"
Send shipment notification email to customer

Response

{
  "success": true,
  "data": {
    "id": "ful_new456",
    "order_id": "ord_xyz789",
    "status": "pending",
    "tracking_number": "1Z999AA10123456784",
    "tracking_url": "https://ups.com/track?num=1Z999AA10123456784",
    "tracking_company": "UPS",
    "line_items": [
      {
        "id": "li_001",
        "quantity": 2,
        "title": "T-Shirt - Red / Medium"
      }
    ],
    "notify_customer": true,
    "created_at": "2024-01-20T14:30:00Z"
  }
}