Create stock transfer item
documentedCreate a new stock transfer item.
POST /api/V2/StockTransferItemStock Controlno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.eposnowhq.com/api/V2/StockTransferItem" \
-X POST \
-H "Authorization: Basic {{EPOSNOWHQ_API_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"StockTransferId": "{{$stock_transfer_id}}", "ItemCode": "{{$item_code}}", "Quantity": {{$quantity}}, "FromLocationId": "{{$from_location_id}}", "ToLocationId": "{{$to_location_id}}", "Remarks": "{{$remarks}}"}'