Skip to content
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.

Latest commit

 

History

History
44 lines (31 loc) · 838 Bytes

user.md

File metadata and controls

44 lines (31 loc) · 838 Bytes

User

All info related to the currently signed in user.

Fetch the currently logged in user

GET a.wunderlist.com/api/v1/user

Response

Status: 200

json
{
  "id": 6234958,
  "name": "BENCHMARK",
  "email": "benchmark@example.com",
  "created_at": "2013-08-30T08:25:58.000Z",
  "revision": 1
}

Fetch the users this user can access

GET a.wunderlist.com/api/v1/users

Params

name type notes
list_id integer optional, restricts the list of returned users to only those who have access to a particular list

Response

Status: 200

json
[
  {
    "id": 6234958,
    "name": "BENCHMARK",
    "email": "benchmark@example.com",
    "created_at": "2013-08-30T08:25:58.000Z",
  }
]