Site Logo

🎉 ShipEngine is becoming ShipStation API 🎉

Over the next few months you'll notice the ShipEngine website, documentation portal, and dashboard being rebranded as ShipStation API. For our ShipEngine customers, you don't need to take any action or change any of your integrations in any way. All endpoints will remain the same and continue to function as they always have.

To learn more about what's coming, review our New ShipStation API page.

Notify The Order Source

Example

POST /v-beta/sales_orders/:id/notify_shipped

Full Sales Order Notification

1
2
3
4
5
6
7
8
9
POST /v-beta/sales_orders/bf2a2717-dd70-5428-a688-98bdc4bcb7e7/notify_shipped HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"tracking_number": "9374869901600064074368",
"carrier_code": "stamps_com"
}

Partial Sales Order Notification

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
POST /v-beta/sales_orders/bf2a2717-dd70-5428-a688-98bdc4bcb7e7/notify_shipped HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"tracking_number": "9374869901600064074368",
"carrier_code": "stamps_com",
"sales_order_items": [
{
"sales_order_item_id": "0ca0a452-2f7b-5a50-8b28-4e0b8d1fa742",
"quantity": 1
}
]
}