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
Post a Comment