Update invoice item
documentedUpdate an invoice item.
PUT /invoiceitem/{invoiceItemId}Invoice Itemno 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.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}}}'