Place ITAD Order

Submit a new IT asset disposition (ITAD) order.

POST
/api/v1/itad/place-order

Description

Creates an ITAD buyback order with line items and shipping address. Requires active work instruction and service provider for the ship-to country.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
itemsarrayYesNon-empty array of devices to dispose.
address_idnumberNoCorporate address ID for shipping.
shipping_emailstringNoShipping contact email.
notify_ordernumberNo1 to send order notification email.
snamestringNoShip-to name (if not using address_id).
saddress_1stringNoShip-to street line 1.
saddress_2stringNoShip-to street line 2.
scitystringNoShip-to city.
sstatestringNoShip-to state.
scountrystringNoShip-to country code (e.g. US).
szipstringNoShip-to postal code.
sphonestringNoShip-to phone.

Each object in items[]

Fields

ParameterTypeRequiredDescription
device_categorystring | numberYes1=Mobile, 2=Tablet, 3=iPod, 4=Laptop, 5=Server, 6=Printer, 7=Desktop, 8=Network, 9=Other (or name).
qtynumberYesQuantity (must be ≥ 1).
brandstringNoDevice brand.
modelstringNoDevice model.

Example Request Body

{
  "items": [
    {
      "device_category": 4,
      "qty": 2,
      "brand": "Apple",
      "model": "MacBook Pro"
    },
    {
      "device_category": "phone",
      "qty": 5,
      "brand": "Samsung",
      "model": "Galaxy S23"
    }
  ],
  "scountry": "US",
  "sstate": "CA",
  "scity": "San Jose",
  "szip": "95110",
  "saddress_1": "500 Logistics Way",
  "sname": "Acme Corp IT",
  "shipping_email": "it@acme.com",
  "notify_order": 1
}

Response

Related Endpoints

Did this page help you?