Add Tag To Order

Adds a tag to an order. The body of this request should specify the following attributes:

Name Data Type Description
orderId number, required Identifies the order that will be tagged.
tagId number, required Identifies the tag that will be applied to the order.

Example Request

POST /orders/addtag HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json

{
  "orderId": 123456,
  "tagId": 1234
}

Example Response

{
  "success": true,
  "message": "Tag added successfully."
}