Undocumented Wunderlist update user endpoint -


there appears endpoint on wunderlist api updating wunderlist user (at https://a.wunderlist.com/api/v1/user) not appear in official docs

user information can updated sending put request it, e.g. :

curl \     -h "x-access-token: $wl_access_token" \     -h "x-client-id: $wl_client_id" \     -h "content-type: application/json" \     -xput -d '{"revision":1234,"name":"some-name"}' \     https://a.wunderlist.com/api/v1/user 

assuming data valid, returns http 200.

is endpoint supported?


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -