UserName = Account Number, Password = API Key

Don't have an API Key? Find it here or email [email protected]

DELETE - Orders

Allows for canceling orders up to 10 minutes after they have been placed.

Resource URL:

DELETE     https://api.ssactivewear.com/v2/orders/

Request Options:

Delete By OrderNumber /v2/orders/{OrderNumber} Tries to cancel the specified order number

Example Request:

DELETE     https://api.ssactivewear.com/v2/orders/9490497

Response:

[
    {
        "guid": "74f3e857-9357-4737-9baa-1e5023996f7d",
        "companyName": "S&S Activewear",
        "warehouseAbbr": "IL",
        "orderNumber": "9490497",
        "invoiceNumber": "3933327",
        "poNumber": "Test",
        "customerNumber": "00002",
        "orderDate": "2016-11-18T17:37:48.743",
        "orderType": "API",
        "terms": "Net 30",
        "orderStatus": "Cancelled",
        "dropship": false,
        "shippingCarrier": "UPS",
        "shippingMethod": "Ground",
        "shipBlind": false,
        "shippingCollectNumber": "",
        "shippingAddress": {
            "customer": "Company ABC",
            "attn": "John Doe",
            "address": "123 Main St",
            "city": "Bollingbrook",
            "state": "WI",
            "zip": "60440"
        },
        "subtotal": 0,
        "shipping": 0,
        "cod": 0,
        "tax": 0,
        "lostCashDiscount": 0,
        "smallOrderFee": 0,
        "cuponDiscount": 0,
        "sampleDiscount": 0,
        "setUpFee": 0,
        "restockFee": 0,
        "debitCredit": 0,
        "total": 0,
        "totalPieces": 0,
        "totalLines": 0,
        "totalWeight": 0.54,
        "totalBoxes": 1
    }
]

*Returns a list of orders that were able to be canceled.