Sign in

Update track

documented

Update metadata and settings for a track.

PUT /tracks/{track_id}Tracksno 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.soundcloud.com/tracks/{{$track_id}}" \
  -X PUT \
  -H "accept: application/json; charset=utf-8" \
  -H "Content-Type: application/json" \
  -H "Authorization: OAuth {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"track": {"title": "{{$title}}", "description": "{{$description}}", "tag_list": "{{$tag_list}}", "genre": "{{$genre}}", "sharing": "{{$sharing}}"}}'
Update track · soundcloud · OpenIntegrations