Deactivate Store

Deactivates the specified store.

Requirements:

  • You'll need a storeId to make this API call.
  • 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.

The body of this request has the following attributes:

Name Data Type Description
storeId number ID of the store to deactivate.

Required

Example Request

POST /stores/deactivate HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__
Content-Type: application/json

{
  "storeId": "12345"
}

Example Response

{
  "success": "true",
  "message": "The requested store has been reactivated."
}