Constructor
new RTMUser(id, username, fullname, authToken)
- Source:
Create a new RTM User.
An RTMUser
can be used to make user-authenticated RTM API calls and also
includes wrapper methods around some common RTM API methods.
Parameters:
Name | Type | Description |
---|---|---|
id |
number | The RTM User's ID |
username |
string | The RTM User's username |
fullname |
string | The RTM User's full name |
authToken |
string | The RTM User's Auth Token |
Members
authToken :string
- Source:
RTM User Auth Token
Type:
- string
client :RTMClient
- Source:
The RTMClient that authorized this User
Type:
fullname :string
- Source:
RTM User fullname
Type:
- string
id :number
- Source:
RTM User ID
Type:
- number
lists
- Source:
requestTimeout
- Source:
Time (ms) to wait to make an API Request
tasks
- Source:
RTM Task related functions:
timeline :number
- Source:
The RTM Timeline for this User
Type:
- number
username :string
- Source:
RTM User Username
Type:
- string
Methods
clearTaskIndexCache()
- Source:
Clear the Task Index Cache for this RTM User
get(method, paramsopt, callback)
- Source:
Make the specified RTM API call.
The method
should be the name of the RTM API method. Any necessary
parameters should be provided with params
as an object with the properties
of the object as the parameters' key/value pairs.
This function will automatically add the User's auth token to the request.
Parameters:
Name | Type | Attributes | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
method |
string | RTM API Method |
||||||||||
params |
object |
<optional> |
RTM API Method Parameters |
|||||||||
callback |
function | Callback function(err, resp) Properties
|
verifyAuthToken(callback)
- Source:
Verify the Auth Token of this RTM User
Parameters:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
callback |
function | Callback function(err, verified) Properties
|
(inner) lists/add(name, filteropt, callback)
- Source:
Add a new RTM List for this User
Parameters:
Name | Type | Attributes | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
name |
string | Name of the new RTM List |
|||||||
filter |
string |
<optional> |
Smart List Filter |
||||||
callback |
function | Callback function(err, lists) Properties
|
(inner) lists/archive(name, callback)
- Source:
Archive the specified RTM List for this User
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
name |
string | RTM List Name |
||||||
callback |
function | Callback function(err) Properties
|
(inner) lists/get(callback)
- Source:
Get the list of RTM Lists for this User from the API Server
Parameters:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
callback |
function | Callback function(err, lists) Properties
|
(inner) lists/remove(name, callback)
- Source:
Remove the specified RTM List for this User
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
name |
string | RTM List Name |
||||||
callback |
function | Callback function(err) Properties
|
(inner) lists/rename(oldName, newName, callback)
- Source:
Rename the specified RTM List for this User
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
oldName |
string | Old RTM List Name |
||||||
newName |
string | New RTM List name |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/add(name, propsopt, callback)
- Source:
Add a new RTM Task for this User
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
name |
string | Task Name (can include 'Smart Add' syntax) |
|||||||||||||||||||||||||||||||||||||
props |
object |
<optional> |
Task Properties Properties
|
||||||||||||||||||||||||||||||||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/addNotes(index, title, notes, callback)
- Source:
Add the specified note to the Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
title |
string | Title of the Note |
||||||
notes |
string | Array.<string> | Note(s) to add to task |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/addTags(index, tags, callback)
- Source:
Add the specified tag(s) to the Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
tags |
string | Array.<string> | Tag(s) to add to task |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/complete(index, callback)
- Source:
Mark the specified Task as complete
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/decreasePriority(index, callback)
- Source:
Decrease the Priority of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/get(filteropt, callback)
- Source:
Get the list of RTM Tasks for this User.
Parameters:
Name | Type | Attributes | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
filter |
string |
<optional> |
Tasks Filter (RTM Advanced Search Syntax) |
|||||||||
callback |
function | Callback function(err, tasks) Properties
|
(inner) tasks/getTask(index, callback)
- Source:
Get the RTMTask specified by its index
Parameters:
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
|||||||||
callback |
function | Callback function(err, task) Properties
|
(inner) tasks/increasePriority(index, callback)
- Source:
Increase the Priority of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/move(index, listName, callback)
- Source:
Move the specified Task to a different List
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
listName |
string | List Name to move Task to |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/postpone(index, callback)
- Source:
Postpone the due date of the Task by 1 day
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/priority(index, priority, callback)
- Source:
Set the priority of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
priority |
int | Task Priority |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/remove(index, callback)
- Source:
Remove the specified Task from the User's Account
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/removeTags(index, tags, callback)
- Source:
Remove the specified tag(s) from the Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
tags |
string | Array.<string> | Tags to remove from the Task |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/setDueDate(index, due, callback)
- Source:
Set the Due Date of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
due |
string | The Due Date of the Task (RTM parsed date) |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/setName(index, name, callback)
- Source:
Set the Name of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
name |
string | New Task Name |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/setURL(index, url, callback)
- Source:
Set the URL of the specified Task
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
url |
string | New Task URL |
||||||
callback |
function | Callback function(err) Properties
|
(inner) tasks/uncomplete(index, callback)
- Source:
Mark the specified Task as NOT complete
Parameters:
Name | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
index |
int | Task Index |
||||||
callback |
function | Callback function(err) Properties
|