Site Logo

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
}
]
}