Zvini
22:33:58

« Task » get

task/get - Returns a single existing task.
Method parameters:
id - The ID of the task to get.
Returns a JSON document of the following format:
{
id: <number> - The ID of the task.
text: <string> - The text of the task.
deadline_time: <string> - The Unix timestamp of the deadline of the task.
tags: <string> - The space-separated list of tags.
top_priority: <boolean> - Whether the task is marked as top priority.
insert_time: <number> - The Unix timestamp of when the task was created.
update_time: <number> - The Unix timestamp of when the task was last modified.
}
Expected errors:
TASK_NOT_FOUND - A task with the ID doesn't exist.