Refresh Store

Initiates a store refresh.

Name Data Type Description
storeId number, optional Specifies the store which will get refreshed. If the storeId is not specified, a store refresh will be initiated for all refreshable stores on that account.
refreshDate string, optional Specifies the starting date for new order imports.
This is only needed if you are trying to retrieve historical orders.
If the refreshDate is not specified, ShipStation will use the last recorded refreshDate for that store.

Info

refreshDate

  • Sending the refreshDate without a time (Ex. 2020-05-29) will be interpreted by our system as midnight (00:00) PST of the date sent.
  • The correct format for the refresh date is YYYY-MM-DD HH:MM:SS, it needs to be representative of the time in PST.

Example Request

POST /stores/refreshstore?storeId=storeId&refreshDate=refreshDate HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json

{
  "storeId": 12345,
  "refreshDate": "2020-05-29 15:05:02"
}

Example Response

{
  "success": true,
  "message": "A store refresh has been initiated for Store ID 12345"
}