Create budget line item
documentedCreate a new budget line item.
POST /budgetlineitemBudget Line 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/budgetlineitem" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Cookie: PHPSESSID={{AUTH_TOKEN}}" \
-d '{"budgetId": {{$budgetId}}, "name": "{{$name}}", "serviceLineId": {{$serviceLineId}}, "cost": {{$cost}}, "quantity": {{$quantity}}, "libItemId": {{$libItemId}}, "libItemType": "{{$libItemType}}", "serviceRequestId": {{$serviceRequestId}}, "jobItemId": {{$jobItemId}}, "orderIndex": {{$orderIndex}}, "referenceNumber": {{$referenceNumber}}}'