Sign in

Update invoice item

documented

Update an invoice item.

PUT /invoiceitem/{invoiceItemId}Invoice Itemno 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.servicetrade.com/api/invoiceitem/{{$invoiceItemId}}" \
  -X PUT \
  -H "Cookie: PHPSESSID={{SERVICETRADE_SESSION_ID}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"invoiceId": {{$invoiceId}}, "quantity": {{$quantity}}, "price": {{$price}}, "description": "{{$description}}", "libItemId": {{$libItemId}}, "serviceLineId": {{$serviceLineId}}, "orderIndex": {{$orderIndex}}, "taxRate": {{$taxRate}}, "taxRateDetails": {{$taxRateDetails}}, "taxGroupId": {{$taxGroupId}}}'