Sign in

Update User Extensions

documented

Updates a broadcaster’s installed extension information.

PUT /helix/users/extensionsUsersno 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.twitch.tv/helix/users/extensions" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Client-Id: {{TWITCH_CLIENT_ID}}" \
  -d '{"data": {"panel": {"1": {"active": {{$panel1_active}}, "id": "{{$panel1_id}}", "version": "{{$panel1_version}}"}}, "overlay": {"1": {"active": {{$overlay1_active}}, "id": "{{$overlay1_id}}", "version": "{{$overlay1_version}}"}}, "component": {"1": {"active": {{$component1_active}}, "id": "{{$component1_id}}", "version": "{{$component1_version}}"}}}}'
Update User Extensions · Twitch · OpenIntegrations