Remove Tag from Order

Removes a tag from the specified order. The body of this request has the following attributes:

Name Data Type Description
orderId number, required Identifies the order whose tag will be removed.
tagId number, required Identifies the tag to remove.

Example Reques

POST /orders/removetag 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 removed successfully."
}