Assign products to the category
documentedAssign one or more products to a category.
POST /api/v3/{storeId}/categories/{categoryId}/assignProductsCategoriesno 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}}/categories/{{$categoryId}}/assignProducts" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"productIds": [{{$productId1}}, {{$productId2}}]}'