Refresh Store

Initiates a store refresh.

To find the storeId for a specific store and also to see the list of stores installed in your account, make a List Stores call.

Name Data Type Description
storeId number Specifies the store that will get refreshed. If the storeId is not specified, a store refresh will be initiated for all refreshable stores on that account.

Optional
refreshDate string 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.

Optional

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"
}