Add catalog product
documentedAdd products to a catalog.
POST /catalogs/{catalog_id}/productsCatalogsno 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.egoiapp.com/catalogs/{{$catalog_id}}/products" \
-X POST \
-H "Authorization: ApiKey {{E-GOI_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name": "{{$name}}", "description": "{{$description}}", "sku": "{{$sku}}", "price": {{$price}}, "categories": ["{{$category_path}}"], "image_link": "{{$image_link}}", "product_identifier": "{{$product_identifier}}", "link": "{{$link}}", "brand": "{{$brand}}", "custom_attributes": [{"alias": "color", "value": "{{$color}}"}]}'