latestOpenAPI 3.1.0MIT2026-08-104712182.1 KB

c71c20d26559

orders

Unassign user from order

Unassigns a user from an order. If ANY of the orders within the array are not found, no orders will have their users unassigned.

post/orders/unassignuser

Request body

orderIdsinteger[] required

Array of order IDs to unassign

Example request

{
  "orderIds": [
    123456789,
    12345679
  ]
}

Response

User unassigned successfully

successboolean
messagestring

Example response

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