Create or update a batch of products
documentedBatch-create or batch-update products.
POST /v2/{account_id}/products/batchesBatch APIno 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.getdrip.com/v3/{{$account_id}}/shopper_activity/product/batch" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-u {{GETDRIP_API_KEY}}: \
-d '{"products": [{"provider": "{{$provider}}", "action": "{{$action}}", "occurred_at": "{{$occurred_at}}", "product_id": "{{$product_id}}", "product_variant_id": "{{$product_variant_id}}", "sku": "{{$sku}}", "name": "{{$name}}", "brand": "{{$brand}}", "categories": {{$categories}}, "price": {{$price}}, "inventory": {{$inventory}}, "product_url": "{{$product_url}}", "image_url": "{{$image_url}}"}]}'