Sign in

Upload category image (async)

documented

Asynchronously upload an image for a category.

POST /api/v3/{storeId}/categories/{categoryId}/image/asyncCategoriesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

I found the official Ecwid docs for the Upload category image (async) endpoint: POST https://app.ecwid.com/api/v3/{storeId}/categories/{categoryId}/image/async. The command below uses Ecwid's keychains curl wrapper with placeholder variables for storeId, categoryId, and request data. Replace placeholders with your actual values or let Keychains fill them at runtime. https://docs.ecwid.com/api-reference/rest-api/categories/category-images/upload-category-image-async. ([docs.ecwid.com](https://docs.ecwid.com/api-reference/rest-api/categories/category-images/upload-category-image-async))
npx -y keychains@latest curl "https://app.ecwid.com/api/v3/{{$storeId}}/categories/{{$categoryId}}/image/async?externalUrl={{$externalUrl}}" -X POST -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" -H "Content-Type: application/json" -H "Accept: application/json" -d '{"url":"{{$url}}","width":"{{$width}}","height":"{{$height}}","externalId":"{{$externalId}}","alt":{"main":"{{$alt_main}}","translated":{"en":"{{$alt_trans_en}}"}}}'
Upload category image (async) · Ecwid · OpenIntegrations