This Get Store API call uses the storeId property to retrieve information related to a specific store.

Name Data Type Description
storeId number Unique identifier for the store

Required

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.

Get Store

Example Request

GET /stores/storeId HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__

Example Response

{
  "storeId": 12345,
  "storeName": "WooCommerce Store",
  "marketplaceId": 36,
  "marketplaceName": "WooCommerce",
  "accountName": null,
  "email": null,
  "integrationUrl": "http://shipstation-test.wpengine.com",
  "active": true,
  "companyName": "",
  "phone": "",
  "publicEmail": "",
  "website": "",
  "refreshDate": "2014-12-16T17:47:05.457",
  "lastRefreshAttempt": "2014-12-16T09:47:05.457",
  "createDate": "2014-11-06T15:21:13.223",
  "modifyDate": "2014-11-10T08:02:19.117",
  "autoRefresh": true,
  "statusMappings": [
    {
      "orderStatus": "awaiting_payment",
      "statusKey": "Pending"
    },
    {
      "orderStatus": "awaiting_shipment",
      "statusKey": "Processing"
    },
    {
      "orderStatus": "shipped",
      "statusKey": "Completed"
    },
    {
      "orderStatus": "cancelled",
      "statusKey": "Cancelled"
    },
    {
      "orderStatus": "on_hold",
      "statusKey": "On-hold"
    }
  ]
}