# Delete Store by ID Delete a store by its unique ID. Endpoint: DELETE /stores/{id} Version: 4 Security: bearerAuth ## Path parameters: - `id` (integer, required) The unique ID of the store to delete. ## Response 200 fields (application/json): - `success` (boolean) Indicates whether the request was successful. ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated." ## Response 404 fields (application/json): - `success` (boolean) Indicates whether the request was successful. - `errors` (array) An array of error messages. Example: ["Store not found"] ## Response 500 fields (application/json): - `success` (boolean) - `errors` (array) Example: ["An unknown error occured"]