Import pricelist items (bulk)
documentedBulk import pricelist items into pricelists.
POST https://api.repsly.com/v3/import/pricelistItemListPricelistsno 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.repsly.com/v3/import/pricelistItemList" \
-X POST \
-H "Authorization: Basic {{REPSLY_SECRET}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"PricelistItems": [{"PricelistName": "{{$pricelistName}}", "ProductCode": "{{$productCode}}", "Price": {{$price}}, "Active": {{$active}}, "DateAvailableFrom": "{{$dateFrom}}", "DateAvailableTo": "{{$dateTo}}", "ClientID": "{{$clientId}}", "ManufactureID": "{{$manufactureId}}", "MinQuantity": {{$minQuantity}}, "MaxQuantity": {{$maxQuantity}}}]}'