reactivate_store
Reactivate a specific store in the ShipStation API by providing its unique store ID, enabling continued management of orders, shipments, and fulfillments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storeId | Yes | Store ID to reactivate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storeId": {
"description": "Store ID to reactivate",
"type": "number"
}
},
"required": [
"storeId"
],
"type": "object"
}