# List stock transactions Returns a paginated list of Stock Transactions for the specified site. Supports filtering and sorting. Endpoint: GET /site/{siteId}/ahds/v1/stock-transaction Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier ## Query parameters: - `page` (number) Page number (0-indexed) - `pageSize` (number) Number of items per page - `sortBy` (string) Field to sort by Enum: "createdAt", "updatedAt", "transactedAt" - `sortOrder` (string) Sort order Enum: "asc", "desc" - `isActive` (boolean) Whether this stock transaction is active in the source system. - `productId` (string) Identifier of the product whose stock is affected. Example: "123e4567-e89b-12d3-a456-426614174000" - `separationId` (string) Identifier for the stock separation/batch/location if applicable. Example: "123e4567-e89b-12d3-a456-426614174000" - `shouldAlterStock` (boolean) Indicates whether this transaction should alter on-hand stock levels. - `status` (string) Status of the stock transaction. Enum: "pending", "completed", "cancelled", "reversed", "unknown" ## Response 200 fields ## Response 401 fields