# Reactivate store

Reactivates the specified store.

Note: Stores are active by default.

Endpoint: POST /stores/reactivate
Version: 1.0.0
Security: basicAuth

## Request fields (application/json):

  - `storeId` (integer, required)
    ID of the store to reactivate
    Example: 12345

## Response 200 fields (application/json):

  - `success` (boolean)
    Example: true

  - `message` (string)
    Example: "Store reactivated successfully"

## Response 400 fields (application/json):

  - `message` (string)
    Example: "Invalid request parameters"

## Response 401 fields (application/json):

  - `message` (string)
    Example: "Invalid API credentials"

## Response 500 fields (application/json):

  - `message` (string)
    Example: "An internal error occurred"


