UserName = Account Number, Password = API Key

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

GET - DaysInTransit

The daysintransit API gives days in transit and cutoff times for our warehouses.

Resource URL:

GET     https://api.ssactivewear.com/v2/daysintransit/

Request Options:

Get All /v2/daysintransit/ Returns all categories
Filter Results /v2/daysintransit/{category}
/v2/daysintransit/60440
Returns categories matching filter condition

{daysintransit} = is a comma separated list of category identifiers
identifiers = zipcode
Response Format /v2/daysintransit/60440?mediatype={mediatype} /v2/daysintransit/60440?mediatype=json Determines the response type

{mediatype} = json or xml (Default=json)

Example Request:

GET     https://api.ssactivewear.com/v2/daysintransit/60440

Response:

[
 {
  "zipCode": "60440",
  "warehouses": [
   {
    "warehouseAbbr": "IL",
    "cutOffTime": "4:00 CT",
    "daysInTransit": 1
   },
   {
    "warehouseAbbr": "NJ",
    "cutOffTime": "4:00 ET",
    "daysInTransit": 3
   },
   {
    "warehouseAbbr": "KS",
    "cutOffTime": "4:00 CT",
    "daysInTransit": 2
   }
  ],
  "warehouseAbbr": "NV",
  "cutOffTime": "4:00 PT",
  "daysInTransit": 4
 }
]

DaysInTransit Object Definition:

zipCode String Postal Zip Code
warehouses Object
warehouseAbbr String Code that defines
cutOffTime String Time your order must be placed by to ship the same day.
daysInTransit Integer Amount of days it will take for your order to be delivered.