Update item transfer
documentedUpdate an item transfer.
PUT /ItemTransfer/{id}Itemsno 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.saasu.com/ItemTransfer/{{$id}}?FileId={{$file_id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"Date": "{{$date}}", "Summary": "{{$summary}}", "Notes": "{{$notes}}", "Tags": ["{{$tag1}}","{{$tag2}}"], "Items": [ {"Quantity": {{$qty1}}, "InventoryItemId": {{$inventory_item_id1}}, "UnitCost": {{$unit_cost1}}, "LineTotal": {{$line_total1}} }, {"Quantity": {{$qty2}}, "InventoryItemId": {{$inventory_item_id2}}, "UnitCost": {{$unit_cost2}}, "LineTotal": {{$line_total2}} } ] }'