Sign in

Create invoice item

documented

Create a new invoice item.

POST /invoiceitemInvoice 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" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Cookie: PHPSESSID={{SERVICETRADE_AUTH_TOKEN}}" \
  -d '{"invoiceId": {{$invoice_id}}, "quantity": {{$quantity}}, "price": {{$price}}, "description": "{{$description}}", "libItemId": {{$libItemId}}, "serviceLineId": {{$serviceLineId}}, "orderIndex": {{$orderIndex}}, "taxRate": {{$taxRate}}, "taxRateDetails": {{$taxRateDetails}}, "taxGroupId": {{$taxGroupId}}}'
Create invoice item · ServiceTrade · OpenIntegrations