Update category
documentedUpdate a specific category by ID.
PUT /3dCartWebAPI/v1/Categories/{categoryId}Categoryno 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://{{$store_secure_url}}/3dCartWebAPI/v1/Categories/{{$categoryId}}" \
-X PUT \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"category": {"name": "{{$name}}", "description": "{{$description}}", "slug": "{{$slug}}", "parent_id": {{$parent_id}}, "is_active": {{$is_active}}, "image": "{{$image}}"}}'