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

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

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

android - How to create dynamically Fragment pager adapter -