Login to your account OR sign up for an account!

The Wipee List API

Access and use WL from anywhere.

Get User Credentials - API home

Description - Use this method to retrieve a user's credentials, such as username, email address, join date, and more.

Arguments -

  • username - the username you want to use.
  • password - the password of the user (encoded).

Example Call -

http://requests.wipeelist.com/v1/usercredentials/username=Joey&password=PASSWORD

Example Response -

<response>
    <status>Success</status>
    <statuscode>200</statuscode>
    <statusmessage>N/A</statusmessage>
    <user>
        <userid>2</userid>
        <username>Joey</username>
        <email>sahil@wipeelist.com</email>
        <joined>2008-11-22 00:59:26</joined>
        <totaltasks>6</totaltasks>
        <pendingtasks>1</pendingtasks>
        <completedtasks>5</completedtasks>
        <deletedtasks></deletedtasks>
    </user>
</response>