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.

Tag Shipments

Once you've created the tags you wish to use, you can add those tags to shipments so you can more easily query those shipments later.

Requirements

  • You'll need the shipment_id of the shipment you wish to tag.
  • You'll need the tag value of the tag you are adding to the shipment.

Example Request & Response

POST /v1/shipments/:shipment_id/tags/:tag_name

1
2
3
POST /v1/shipments/se-2102034/tags/east_warehouse HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Response

1
2
3
4
5
6
{
"shipment_id": "se-2102034",
"tag": {
"name": "east_warehouse"
}
}