Procedures

Automation procedures in the Asana BDK Book.

to create a (task) in a project

Create a task in a project

Input Concepts

Concept
Description
Type
Required
Default Value

The project in which to create the task.

asana project

Yes

A Task object, used for its 'name' and optionally 'html_notes' attribute.

asana task

Yes

Output Concepts

Concept
Description
Type

The newly created task as returned by the API.

asana task

Examples

create a json
use the above as the task
set the task's "name" to "Write documentation"
>>>
get some projects from asana
create the task in the first project

to delete a task

Delete a task in Asana.

Input Concepts

Concept
Description
Type
Required

The task to be deleted. Must have a valid GID.

asana task

Yes

Examples

create a json
use the above as the task
set the task's "name" to "Write documentation"
>>>
get some projects from asana
create the task in the first project
delete the task

to get some (project's tasks)

Get tasks from a project

Input Concepts

Concept
Description
Type
Required

The project to get tasks from

asana project

Yes

Output Concepts

Concept
Description
Type

A list of tasks in the project

asana task

Examples

get some projects from asana
use the first project as my project
get my project's tasks

to get some projects from asana

Get projects from Asana

Output Concepts

Concept
Description
Type

A list of projects

asana project

Examples

get some projects from asana

Last updated

Was this helpful?