Sign in

Create stock transfer

documented

Create a new stock transfer.

POST /api/V2/StockTransferStock Controlno implementation yet0 runs
No 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/StockTransfer" \
  -X POST \
  -H "Authorization: Basic {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"FromLocationId": "{{$from_location_id}}", "ToLocationId": "{{$to_location_id}}", "StockTransferReasonId": "{{$reason_id}}", "StockTransferItems": [ {"ProductId": "{{$product_id}}", "Quantity": {{$quantity}} } ] }'