Sign in

Update item adjustment

documented

Update an item adjustment.

PUT /ItemAdjustment/{id}Itemsno 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.saasu.com/ItemAdjustment/{{$id}}?FileId={{$file_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"Id": {{$id}}, "Date": "{{$date}}", "Summary": "{{$summary}}", "Notes": "{{$notes}}", "Tags": ["{{$tag1}}","{{$tag2}}"], "AdjustmentItems": [ {"Quantity": {{$quantity1}}, "ItemId": {{$item_id1}}, "AccountId": {{$account_id1}}, "UnitPrice": {{$unit_price1}}, "TotalPrice": {{$total_price1}} } ], "LastUpdatedId": "{{$last_updated_id}}", "RequiresFollowUp": {{$requires_follow_up}} }'"