Upload main product image (async)
documentedAsynchronously upload the main image for a product (async path).
POST /api/v3/{storeId}/products/{productId}/image/asyncProduct Images & Videosno 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://app.ecwid.com/api/v3/{{$storeId}}/products/{{$productId}}/image/async" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"url": "{{$image_url}}", "width": "{{$width}}", "height": "{{$height}}", "externalId": "{{$externalId}}", "alt": {"main": "{{$alt_main}}", "translated": {"en": "{{$alt_en}}", "de": "{{$alt_de}}"}}}'