Posted by Stephanie Obodda, Brown University
Want to weigh in on this topic? Discuss on Buzz
Posted by Don Dodge
Posted by Steven Bazyl, Google Apps Marketplace Team
Posted by Claudio Cherubino, Developer Relations Team
POST /tasks/v1/lists/<list-ID>/tasksContent-Type: application/json...{ title: "Publish blog post" }
Task task = new Task();task.setTitle( "Publish blog post");client.tasks.insert( "list-ID", task).execute();