Unassign User from Order

Unassigns a user from an order. The body of this request should specify the following attributes:

Name Data Type Description
orderIds number, required Identifies set of orders that will have the user unassigned.

NOTE: If ANY of the orders within the array are not found, then no orders will have their users unassigned.

Example Request

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

{
  "orderIds": [
    123456789,
    12345679
  ]
}

Example Response

{
  "success": true,
  "message": "User unassigned successfully."
}