# Stock detail Returns detailed information about one stock. Endpoint: GET /api/stocks/{stockId} Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Path parameters: - `stockId` (number, required) Example: "1" ## Header parameters: - `Content-Type` (string, required) ## Response 200 fields (application/json): - `data` (object, required) - `data.stock` (object, required) - `data.stock.id` (integer, required) stock unique ID - `data.stock.title` (string, required) stock name - `data.stock.isDeliveryPoint` (boolean, required) flag, whether the stock is also a distribution point - `data.stock.deliveryPointTitle` (string,null, required) name of the distribution point (can be ) - `data.stock.deliveryPointAddress` (string,null, required) address of the distribution point (can be ) - `data.stock.type` (any, required) Stock type, enum, determines if stock is (default setting, same as current ordinary stock), (logical subdivision of an internal physical stock, child with a parent stock - see ) or (external standalone warehouse) Enum: "internalPhysical", "internalVirtual", "external", null - `data.stock.parentStockId` (integer,null, required) Parent stock ID - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced