Sign in

Update product attributes

documented

Update attributes for a product

PUT /v2/products/{id}/attributesDAMno 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)

npx -y keychains@latest curl "https://api.widencollective.com/v2/products/{{$id}}/attributes" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"attributes": {"{{$attribute_key_1}}": "{{$attribute_value_1}}", "{{$attribute_key_2}}": "{{$attribute_value_2}}"}}'