Liking cljdoc? Tell your friends :D

happygapi.tasks.tasks

Tasks API: tasks. The Google Tasks API lets you manage your tasks and task lists. See: https://developers.google.com/tasks/api/reference/rest/v1/tasks

Tasks API: tasks.
The Google Tasks API lets you manage your tasks and task lists.
See: https://developers.google.com/tasks/api/reference/rest/v1/tasks
raw docstring

clear$clj

(clear$ auth parameters)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/clear

Required parameters: tasklist

Optional parameters: none

Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/clear

Required parameters: tasklist

Optional parameters: none

Clears all completed tasks from the specified task list. The affected tasks will be marked as 'hidden' and no longer be returned by default when retrieving all tasks for a task list.
sourceraw docstring

delete$clj

(delete$ auth parameters)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/delete

Required parameters: tasklist, task

Optional parameters: none

Deletes the specified task from the task list.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/delete

Required parameters: tasklist, task

Optional parameters: none

Deletes the specified task from the task list.
sourceraw docstring

get$clj

(get$ auth parameters)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/get

Required parameters: task, tasklist

Optional parameters: none

Returns the specified task.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/get

Required parameters: task, tasklist

Optional parameters: none

Returns the specified task.
sourceraw docstring

insert$clj

(insert$ auth parameters body)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/insert

Required parameters: tasklist

Optional parameters: previous, parent

Body:

{:deleted boolean, :parent string, :updated string, :completed string, :selfLink string, :etag string, :due string, :title string, :status string, :hidden boolean, :id string, :kind string, :notes string, :position string, :links [{:description string, :type string, :link string}]}

Creates a new task on the specified task list.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/insert

Required parameters: tasklist

Optional parameters: previous, parent

Body: 

{:deleted boolean,
 :parent string,
 :updated string,
 :completed string,
 :selfLink string,
 :etag string,
 :due string,
 :title string,
 :status string,
 :hidden boolean,
 :id string,
 :kind string,
 :notes string,
 :position string,
 :links [{:description string, :type string, :link string}]}

Creates a new task on the specified task list.
sourceraw docstring

list$clj

(list$ auth parameters)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/list

Required parameters: tasklist

Optional parameters: completedMin, showCompleted, completedMax, pageToken, showHidden, dueMin, showDeleted, updatedMin, dueMax, maxResults

Returns all tasks in the specified task list.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/list

Required parameters: tasklist

Optional parameters: completedMin, showCompleted, completedMax, pageToken, showHidden, dueMin, showDeleted, updatedMin, dueMax, maxResults

Returns all tasks in the specified task list.
sourceraw docstring

move$clj

(move$ auth parameters)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/move

Required parameters: task, tasklist

Optional parameters: parent, previous

Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/move

Required parameters: task, tasklist

Optional parameters: parent, previous

Moves the specified task to another position in the task list. This can include putting it as a child task under a new parent and/or move it to a different position among its sibling tasks.
sourceraw docstring

patch$clj

(patch$ auth parameters body)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/patch

Required parameters: tasklist, task

Optional parameters: none

Body:

{:deleted boolean, :parent string, :updated string, :completed string, :selfLink string, :etag string, :due string, :title string, :status string, :hidden boolean, :id string, :kind string, :notes string, :position string, :links [{:description string, :type string, :link string}]}

Updates the specified task. This method supports patch semantics.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/patch

Required parameters: tasklist, task

Optional parameters: none

Body: 

{:deleted boolean,
 :parent string,
 :updated string,
 :completed string,
 :selfLink string,
 :etag string,
 :due string,
 :title string,
 :status string,
 :hidden boolean,
 :id string,
 :kind string,
 :notes string,
 :position string,
 :links [{:description string, :type string, :link string}]}

Updates the specified task. This method supports patch semantics.
sourceraw docstring

update$clj

(update$ auth parameters body)

https://developers.google.com/tasks/api/reference/rest/v1/tasks/update

Required parameters: task, tasklist

Optional parameters: none

Body:

{:deleted boolean, :parent string, :updated string, :completed string, :selfLink string, :etag string, :due string, :title string, :status string, :hidden boolean, :id string, :kind string, :notes string, :position string, :links [{:description string, :type string, :link string}]}

Updates the specified task.

https://developers.google.com/tasks/api/reference/rest/v1/tasks/update

Required parameters: task, tasklist

Optional parameters: none

Body: 

{:deleted boolean,
 :parent string,
 :updated string,
 :completed string,
 :selfLink string,
 :etag string,
 :due string,
 :title string,
 :status string,
 :hidden boolean,
 :id string,
 :kind string,
 :notes string,
 :position string,
 :links [{:description string, :type string, :link string}]}

Updates the specified task.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close