Update current user settings
documentedUpdate the current user’s settings.
POST /me/settings/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://public-api.wordpress.com/rest/v1.1/me/settings/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"display_name": "{{$display_name}}", "description": "{{$description}}", "user_email": "{{$user_email}}", "language": "{{$language}}", "primary_site_ID": {{$primary_site_ID}}, "gravatar_profile_hidden": {{$gravatar_profile_hidden}}, "tracks_opt_out": {{$tracks_opt_out}}, "calypso_preferences": {{$calypso_preferences}}, "password": "{{$password}}"}'