Update user
documentedUpdate a user’s profile.
PUT /users/{user_id}Usersno 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://api.soundcloud.com/me" \
-X PUT \
-H "accept: application/json; charset=utf-8" \
-H "Authorization: OAuth {{OAUTH2_ACCESS_TOKEN}}" \
-F "user[full_name]={{$full_name}}" \
-F "user[city]={{$city}}" \
-F "user[description]={{$description}}" \
-F "user[website]={{$website}}"