Sign in

Update change order line item

documented

Update an existing change order line item.

PUT /changeorderlineitem/{id}Change Order Line 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/changeorderlineitem/{{$changeOrderLineItemId}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Cookie: PHPSESSID={{AUTH_SESSION_ID}}" \
  -d '{"quantity": {{$quantity}}, "name": "{{$name}}", "serviceLineId": {{$serviceLineId}}, "serviceRequestId": {{$serviceRequestId}}, "jobItemId": {{$jobItemId}}, "libItemId": {{$libItemId}}, "libItemType": "{{$libItemType}}", "cost": {{$cost}}, "price": {{$price}}, "referenceNumber": "{{$referenceNumber}}", "notes": "{{$notes}}", "orderIndex": {{$orderIndex}}}'