Add price book entry
documentedAdd a Price Book Entry to a Price Book.
POST /PriceBooks/{PRICE_BOOK_ID}/PriceBookEntriesPrice Booksno 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.{{$pod}}.insightly.com/v3.1/PriceBooks/{{$price_book_id}}/PriceBookEntries" \
-X POST \
-H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"product_id": "{{$product_id}}", "price": {{$price}}, "currency": "{{$currency}}"}'