Connectors Reference

Asana

Asana enables teams to manage their projects and tasks in one place.

 

Status: Production

Tier: Standard

Version: 1.0

 

Actions:

Name

Summary

ListWorkspaces ()

List workspaces

ListWorkspaceTeams (string workspace, [internal][Optional]string $select)

List teams by workspace

ListProjects (string workspace)

List projects from workspace

CreateProject (string workspace, [Optional]string team, ProjectRequest project)

Create new project

GetProject (string project_id)

Get project by ID

ListTasks (string workspace, string project)

List tasks from project

CreateTask (string workspace, string projects, TaskRequest task)

Create Task

GetTask (string task_id)

Get task by ID

CompleteTask (string task_id)

Complete Task

AddComment (string task_id, AddCommentParameterBody body)

Add Comment

ListUsers (string workspace_id)

List users by workspace

GetUser (string user_id)

Get user by ID

ListWorkspacesV2 ()

List workspaces (V2)

ListWorkspaceTeamsV2 (string workspace, [internal][Optional]string $select)

List teams by workspace (V2)

ListProjectsV2 (string workspace)

List projects from workspace (V2)

CreateProjectV2 (string workspace, [Optional]string team, ProjectRequestV2 project)

Create a new project (V2)

GetProjectV2 (string project_id)

Get project by ID (V2)

ListTasksV2 (string workspace, string project)

List tasks from project (V2)

CreateTaskV2 (string workspace, string projects, TaskRequestV2 task)

Create Task (V2)

GetTaskV2 (string task_id)

Get task by ID (V2)

CompleteTaskV2 (string task_id)

Complete Task (V2)

AddCommentV2 (string task_id, AddCommentV2ParameterBody body)

Add Comment (V2)

ListUsersV2 (string workspace_id)

List users by workspace (V2)

GetUserV2 (string user_id)

Get user by ID (V2)

 

Triggers:

Name

Summary

OnProjectCreated (string workspace)

When a project is created

OnTaskCreated (string workspace, string project)

When a task is created

OnTaskCompleted (string workspace, string project)

When a task is completed

OnProjectCreatedV2 (string workspace)

When a project is created (V2)

OnTaskCreatedV2 (string workspace, string project)

When a task is created (V2)

OnTaskCompletedV2 (string workspace, string project)

When a task is completed (V2)

 

Objects:

Name

Summary

AddCommentParameterBody

 

AddCommentResponse

 

AddCommentResponseV2

 

AddCommentV2ParameterBody

 

Assignee

Assignee

AssigneeV2

Assignee

CreatedBy

Author

CreatedByV2

Author

CurrentStatus

Status

CurrentStatusV2

Status

ListProjectsResponse

 

ListProjectsResponseV2

 

ListTasksResponse

 

ListTasksResponseV2

 

ListTeamsResponse

 

ListTeamsResponseV2

 

ListUsersResponse

 

ListUsersResponseV2

 

ListWorkSpacesResponse

 

ListWorkSpacesResponseV2

 

Owner

Owner

OwnerV2

Owner

ProjectRequest

 

ProjectRequestV2

 

ProjectResponse

 

ProjectResponseV2

 

Target

Task

TargetV2

Task

TaskRequest

 

TaskRequestV2

 

TaskResponse

 

TaskResponseV2

 

UserResponse

 

UserResponseV2

 

WorkSpace

Workspace

WorkSpaceV2

Workspace

 

Actions:

ListWorkspaces

Summary: List workspaces

Description: This operation is used to list workspaces for the current user.

 

Syntax:

Asana.ListWorkspaces ()

 

Returns:

          Type:ListWorkSpacesResponse

 

ListWorkspaceTeams

Summary: List teams by workspace

Description: This operation is used to view teams in the workspace or organization.

 

Syntax:

Asana.ListWorkspaceTeams (string workspace, [internal][Optional]string $select)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace or Organization ID.

True

ListWorkspaces

$select

string

(Select)

Select.

False

 

Returns:

          Type:ListTeamsResponse

 

ListProjects

Summary: List projects from workspace

Description: This operation is used to list projects for the current user.

 

Syntax:

Asana.ListProjects (string workspace)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspaces

 

Returns:

          Type:ListProjectsResponse

 

CreateProject

Summary: Create new project

Description: This operation is used to create a new project.

 

Syntax:

Asana.CreateProject (string workspace, [Optional]string team, ProjectRequest project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to use for new projects.

True

ListWorkspaces

team

string

(Team ID)

If creating in an organization, the specific team to create the project in.

False

ListWorkspaceTeams

project

ProjectRequest

 

An Asana project used to create new projects.

True

 

Returns:

          Type:ProjectResponse

          Description: An Asana project.

 

GetProject

Summary: Get project by ID

Description: This operation retrieves project object by Project ID.

 

Syntax:

Asana.GetProject (string project_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

project_id

string

(Project ID)

The ID of the Project.

True

 

Returns:

          Type:ProjectResponse

          Description: An Asana project.

 

ListTasks

Summary: List tasks from project

Description: This operation returns a list of tasks for a specified project.

 

Syntax:

Asana.ListTasks (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspaces

project

string

(Project)

Project

True

ListProjects

 

Returns:

          Type:ListTasksResponse

 

CreateTask

Summary: Create Task

Description: This operation is used to create a new task in your Asana project.

 

Syntax:

Asana.CreateTask (string workspace, string projects, TaskRequest task)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to use for your projects.

True

ListWorkspaces

projects

string

(Project ID)

Project

True

ListProjects

task

TaskRequest

 

An Asana task used to create new tasks.

True

 

Returns:

          Type:TaskResponse

          Description: An Asana task.

 

GetTask

Summary: Get task by ID

Description: This operation retrieves a task object by Task ID.

 

Syntax:

Asana.GetTask (string task_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

 

Returns:

          Type:TaskResponse

          Description: An Asana task.

 

CompleteTask

Summary: Complete Task

Description: This operation is used to mark an existing task as complete.

 

Syntax:

Asana.CompleteTask (string task_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

 

Returns:

          Type:TaskResponse

          Description: An Asana task.

 

AddComment

Summary: Add Comment

Description: This operation is used to add a comment to an existing task.

 

Syntax:

Asana.AddComment (string task_id, AddCommentParameterBody body)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

body

AddCommentParameterBody

 

 

True

 

Returns:

          Type:AddCommentResponse

          Description: A comment on an Asana task.

 

ListUsers

Summary: List users by workspace

Description: This operation retrieves the list of users for a given workspace.

 

Syntax:

Asana.ListUsers (string workspace_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace_id

string

(Workspace ID)

Workspace to monitor for users.

True

ListWorkspaces

 

Returns:

          Type:ListUsersResponse

 

GetUser

Summary: Get user by ID

Description: This operation retrieves user object by User ID.

 

Syntax:

Asana.GetUser (string user_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

user_id

string

(User)

User

True

 

Returns:

          Type:UserResponse

          Description: An Asana user.

 

ListWorkspacesV2

Summary: List workspaces (V2)

Description: This operation is used to list workspaces for the current user (V2).

 

Syntax:

Asana.ListWorkspacesV2 ()

 

Returns:

          Type:ListWorkSpacesResponseV2

 

ListWorkspaceTeamsV2

Summary: List teams by workspace (V2)

Description: This operation is used to view teams in the workspace or organization (V2).

 

Syntax:

Asana.ListWorkspaceTeamsV2 (string workspace, [internal][Optional]string $select)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace or Organization ID.

True

ListWorkspacesV2

$select

string

(Select)

Select.

False

 

Returns:

          Type:ListTeamsResponseV2

 

ListProjectsV2

Summary: List projects from workspace (V2)

Description: This operation is used to list projects for the current user (V2).

 

Syntax:

Asana.ListProjectsV2 (string workspace)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspacesV2

 

Returns:

          Type:ListProjectsResponseV2

 

CreateProjectV2

Summary: Create a new project (V2)

Description: This operation is used to create a new project (V2).

 

Syntax:

Asana.CreateProjectV2 (string workspace, [Optional]string team, ProjectRequestV2 project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to use for new projects.

True

ListWorkspacesV2

team

string

(Team ID)

If creating in an organization, the specific team to create the project in.

False

ListWorkspaceTeamsV2

project

ProjectRequestV2

 

An Asana project used to create new projects.

True

 

Returns:

          Type:ProjectResponseV2

          Description: An Asana project.

 

GetProjectV2

Summary: Get project by ID (V2)

Description: This operation retrieves project object by Project ID (V2).

 

Syntax:

Asana.GetProjectV2 (string project_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

project_id

string

(Project ID)

The ID of the Project.

True

 

Returns:

          Type:ProjectResponseV2

          Description: An Asana project.

 

ListTasksV2

Summary: List tasks from project (V2)

Description: This operation returns a list of tasks for a specified project (V2).

 

Syntax:

Asana.ListTasksV2 (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspacesV2

project

string

(Project)

Project

True

ListProjectsV2

 

Returns:

          Type:ListTasksResponseV2

 

CreateTaskV2

Summary: Create Task (V2)

Description: This operation is used to create a new task in your Asana project (V2).

 

Syntax:

Asana.CreateTaskV2 (string workspace, string projects, TaskRequestV2 task)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to use for your projects.

True

ListWorkspacesV2

projects

string

(Project ID)

Project

True

ListProjectsV2

task

TaskRequestV2

 

An Asana task used to create new tasks.

True

 

Returns:

          Type:TaskResponseV2

          Description: An Asana task.

 

GetTaskV2

Summary: Get task by ID (V2)

Description: This operation retrieves a task object by Task ID (V2).

 

Syntax:

Asana.GetTaskV2 (string task_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

 

Returns:

          Type:TaskResponseV2

          Description: An Asana task.

 

CompleteTaskV2

Summary: Complete Task (V2)

Description: This operation is used to mark an existing task as complete (V2).

 

Syntax:

Asana.CompleteTaskV2 (string task_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

 

Returns:

          Type:TaskResponseV2

          Description: An Asana task.

 

AddCommentV2

Summary: Add Comment (V2)

Description: This operation is used to add a comment to an existing task (V2).

 

Syntax:

Asana.AddCommentV2 (string task_id, AddCommentV2ParameterBody body)

 

Parameters:

Name

Type

Summary

Required

Related Action

task_id

string

(Task ID)

Unique id of the task.

True

body

AddCommentV2ParameterBody

 

 

True

 

Returns:

          Type:AddCommentResponseV2

          Description: A comment on an Asana task.

 

ListUsersV2

Summary: List users by workspace (V2)

Description: This operation retrieves the list of users for a given workspace (V2).

 

Syntax:

Asana.ListUsersV2 (string workspace_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace_id

string

(Workspace ID)

Workspace to monitor for users.

True

ListWorkspacesV2

 

Returns:

          Type:ListUsersResponseV2

 

GetUserV2

Summary: Get user by ID (V2)

Description: This operation retrieves user object by User ID (V2).

 

Syntax:

Asana.GetUserV2 (string user_id)

 

Parameters:

Name

Type

Summary

Required

Related Action

user_id

string

(User)

User

True

 

Returns:

          Type:UserResponseV2

          Description: An Asana user.

 

Triggers:

Trigger OnProjectCreated

Summary: When a project is created

Description: Triggers when a new project is created.

 

Syntax:

Asana.OnProjectCreated (string workspace)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspaces

 

Returns:

          Type:ListProjectsResponse

 

Trigger OnTaskCreated

Summary: When a task is created

Description: Triggers when a new task is created.

 

Syntax:

Asana.OnTaskCreated (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspaces

project

string

(Project ID)

Project

True

ListProjects

 

Returns:

          Type:ListTasksResponse

 

Trigger OnTaskCompleted

Summary: When a task is completed

Description: Triggers when an existing task is completed.

 

Syntax:

Asana.OnTaskCompleted (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspaces

project

string

(Project ID)

Project

True

ListProjects

 

Returns:

          Type:ListTasksResponse

 

Trigger OnProjectCreatedV2

Summary: When a project is created (V2)

Description: Triggers when a new project is created (V2).

 

Syntax:

Asana.OnProjectCreatedV2 (string workspace)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspacesV2

 

Returns:

          Type:ListProjectsResponseV2

 

Trigger OnTaskCreatedV2

Summary: When a task is created (V2)

Description: Triggers when a new task is created (V2).

 

Syntax:

Asana.OnTaskCreatedV2 (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspacesV2

project

string

(Project ID)

Project

True

ListProjectsV2

 

Returns:

          Type:ListTasksResponseV2

 

Trigger OnTaskCompletedV2

Summary: When a task is completed (V2)

Description: Triggers when an existing task is completed (V2).

 

Syntax:

Asana.OnTaskCompletedV2 (string workspace, string project)

 

Parameters:

Name

Type

Summary

Required

Related Action

workspace

string

(Workspace ID)

Workspace to monitor for new projects.

True

ListWorkspacesV2

project

string

(Project ID)

Project

True

ListProjectsV2

 

Returns:

          Type:ListTasksResponseV2

 


 

AddCommentParameterBody

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

Data

 

 

 

Data

Summary:

Description:

 

          Properties:

Name

Type

Summary

text

string

Comment

Text to be used as comment.

 


 

AddCommentResponse

Summary:

Description: A comment on an Asana task.

 

          Properties:

Name

Type

Summary

data

Data

 

A comment on an Asana task.

 

Data

Summary:

Description: A comment on an Asana task.

 

          Properties:

Name

Type

Summary

target

Target

Task

The task that this comment is associated with.

text

string

Text

The text of the comment.

created_at

string

Creation date

The date and time at which this comment was created.

created_by

CreatedBy

Author

The user that authored this comment.

source

string

Source

The component of the Asana product the user used to trigger the comment.

type

string

Type

The type of comment this is.

id

integer(int32)

Comment ID

The ID for this comment.

 


 

AddCommentResponseV2

Summary:

Description: A comment on an Asana task.

 

          Properties:

Name

Type

Summary

data

Data

 

A comment on an Asana task.

 

Data

Summary:

Description: A comment on an Asana task.

 

          Properties:

Name

Type

Summary

target

TargetV2

Task

The task that this comment is associated with.

text

string

Text

The text of the comment.

created_at

string

Creation date

The date and time at which this comment was created.

created_by

CreatedByV2

Author

The user that authored this comment.

source

string

Source

The component of the Asana product the user used to trigger the comment.

type

string

Type

The type of comment this is.

gid

string

Comment ID

The ID for this comment.

 


 

AddCommentV2ParameterBody

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

Data

 

 

 

Data

Summary:

Description:

 

          Properties:

Name

Type

Summary

text

string

Comment

Text to be used as comment.

 


 

Assignee

Summary: Assignee

Description: The user to whom this task is assigned.

 

          Properties:

Name

Type

Summary

id

integer

ID

 

name

string

name

 


 

AssigneeV2

Summary: Assignee

Description: The user to whom this task is assigned.

 

          Properties:

Name

Type

Summary

gid

string

ID

 

name

string

name

 


 

CreatedBy

Summary: Author

Description: The user that authored this comment.

 

          Properties:

Name

Type

Summary

id

integer

ID

The ID of the user that authored this comment.

name

string

name

The name of the user that authored this comment.


 

CreatedByV2

Summary: Author

Description: The user that authored this comment.

 

          Properties:

Name

Type

Summary

gid

string

ID

The ID of the user that authored this comment.

name

string

name

The name of the user that authored this comment.


 

CurrentStatus

Summary: Status

Description:

 

          Properties:

Name

Type

Summary

color

string

color

The color status of the project.

text

string

text

Text describing the project status.

author

Author

 

author.

 

Author

Summary:

Description: author.

 

          Properties:

Name

Type

Summary

id

integer

ID

ID of the author of the project status.

name

string

name

Name of the author of the project status.

 


 

CurrentStatusV2

Summary: Status

Description:

 

          Properties:

Name

Type

Summary

color

string

color

The color status of the project.

text

string

text

Text describing the project status.

author

Author

 

author.

 

Author

Summary:

Description: author.

 

          Properties:

Name

Type

Summary

gid

string

ID

ID of the author of the project status.

name

string

name

Name of the author of the project status.

 


 

ListProjectsResponse

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (ProjectResponse)

Projects

 


 

ListProjectsResponseV2

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (ProjectResponseV2)

Projects

 


 

ListTasksResponse

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (TaskResponse)

Tasks

 


 

ListTasksResponseV2

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (TaskResponseV2)

Tasks

 


 

ListTeamsResponse

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (DataItem)

 

 

 

DataItem

Summary:

Description:

 

          Properties:

Name

Type

Summary

id

integer(int32)

Team ID

Globally unique ID of the team.

name

string

Name

The name of the team.

 


 

ListTeamsResponseV2

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (DataItem)

 

 

 

DataItem

Summary:

Description:

 

          Properties:

Name

Type

Summary

gid

string

Team ID

Globally unique ID of the team.

name

string

Name

The name of the team.

 


 

ListUsersResponse

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (UserResponse)

Users

 


 

ListUsersResponseV2

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (UserResponseV2)

Users

 


 

ListWorkSpacesResponse

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (DataItem)

 

 

 

DataItem

Summary:

Description:

 

          Properties:

Name

Type

Summary

id

integer(int32)

Workspace ID

Unique identifier of the workspace.

name

string

Name

Workspace name.

is_organization

boolean

 

 

 


 

ListWorkSpacesResponseV2

Summary:

Description:

 

          Properties:

Name

Type

Summary

data

array of (DataItem)

 

 

 

DataItem

Summary:

Description:

 

          Properties:

Name

Type

Summary

gid

string

Workspace ID

Unique identifier of the workspace.

name

string

Name

Workspace name.

is_organization

boolean

 

 

 


 

Owner

Summary: Owner

Description: The project owner.

 

          Properties:

Name

Type

Summary

id

integer

ID

The ID of the project owner.

name

string

name

The name of the project owner.


 

OwnerV2

Summary: Owner

Description: The project owner.

 

          Properties:

Name

Type

Summary

gid

string

ID

The ID of the project owner.

name

string

name

The name of the project owner.


 

ProjectRequest

Summary:

Description: An Asana project used to create new projects.

 

          Properties:

Name

Type

Summary

data

Data

 

An Asana project used to create new projects.

 

Data

Summary:

Description: An Asana project used to create new projects.

 

          Properties:

Name

Type

Summary

name

string

Project name

Name of the project.

due_date

string(date)

Due date

yyyy-MM-dd

public

boolean

Public

True if the project is public to the organization.

color

string

Project color

Color used to display the project.  Values: [dark-pink, dark-green, dark-blue, dark-red, dark-teal, dark-brown, dark-orange, dark-purple, dark-warm-gray, light-pink, light-green, light-blue, light-red, light-teal, light-yellow, light-orange, light-purple, light-warm-gray]

notes

string

Project notes

Notes about the project.

owner

string

Owner

Owner of the project.

archived

boolean

Archive

Archived projects do not show in the UI by default.

 


 

ProjectRequestV2

Summary:

Description: An Asana project used to create new projects.

 

          Properties:

Name

Type

Summary

data

Data

 

An Asana project used to create new projects.

 

Data

Summary:

Description: An Asana project used to create new projects.

 

          Properties:

Name

Type

Summary

name

string

Project name

Name of the project.

due_date

string(date)

Due date

yyyy-MM-dd

public

boolean

Public

True if the project is public to the organization.

color

string

Project color

Color used to display the project.  Values: [dark-pink, dark-green, dark-blue, dark-red, dark-teal, dark-brown, dark-orange, dark-purple, dark-warm-gray, light-pink, light-green, light-blue, light-red, light-teal, light-yellow, light-orange, light-purple, light-warm-gray]

notes

string

Project notes

Notes about the project.

owner

string

Owner

Owner of the project.

archived

boolean

Archive

Archived projects do not show in the UI by default.

 


 

ProjectResponse

Summary:

Description: An Asana project.

 

          Properties:

Name

Type

Summary

id

integer(int32)

Project ID

 

name

string

Project name

 

notes

string

Project notes

 

created_at

string(date-time)

Created date

yyyy-MM-ddTHH:mm:ss.fffZ

modified_at

string(date-time)

Modified date

yyyy-MM-ddTHH:mm:ss.fffZ

owner

Owner

Owner

The project owner.

due_date

string(date)

Due date

yyyy-MM-dd

current_status

CurrentStatus

Status

 

public

boolean

Public

 

archived

boolean

Archived

 

workspace

WorkSpace

Workspace

The workspace.

color

string

Color

Project color.


 

ProjectResponseV2

Summary:

Description: An Asana project.

 

          Properties:

Name

Type

Summary

gid

string

Project ID

 

name

string

Project name

 

notes

string

Project notes

 

created_at

string(date-time)

Created date

yyyy-MM-ddTHH:mm:ss.fffZ

modified_at

string(date-time)

Modified date

yyyy-MM-ddTHH:mm:ss.fffZ

owner

OwnerV2

Owner

The project owner.

due_date

string(date)

Due date

yyyy-MM-dd

current_status

CurrentStatusV2

Status

 

public

boolean

Public

 

archived

boolean

Archived

 

workspace

WorkSpaceV2

Workspace

The workspace.

color

string

Color

Project color.


 

Target

Summary: Task

Description: The task that this comment is associated with.

 

          Properties:

Name

Type

Summary

id

integer

ID

The ID of the task that this comment is associated with.

name

string

name

The ID of the task that this comment is associated with.


 

TargetV2

Summary: Task

Description: The task that this comment is associated with.

 

          Properties:

Name

Type

Summary

gid

string

ID

The ID of the task that this comment is associated with.

name

string

name

The ID of the task that this comment is associated with.


 

TaskRequest

Summary:

Description: An Asana task used to create new tasks.

 

          Properties:

Name

Type

Summary

data

Data

 

An Asana task used to create new tasks.

 

Data

Summary:

Description: An Asana task used to create new tasks.

 

          Properties:

Name

Type

Summary

name

string

Task name

Name of the task.

assignee

string

Assignee

'Email or User ID, defaults to current user.

notes

string

Description

Description of the task.

assignee_status

string

Assignee status

Scheduling status of the task.  Values: [Inbox, Later, Today, Upcoming]

completed

boolean

Completed

Indicate if the task will be marked as completed.

due_on

string(date)

Due date

Due date of the task.

 


 

TaskRequestV2

Summary:

Description: An Asana task used to create new tasks.

 

          Properties:

Name

Type

Summary

data

Data

 

An Asana task used to create new tasks.

 

Data

Summary:

Description: An Asana task used to create new tasks.

 

          Properties:

Name

Type

Summary

name

string

Task name

Name of the task.

assignee

string

Assignee

Email or User ID, defaults to current user.

notes

string

Description

Description of the task.

assignee_status

string

Assignee status

Scheduling status of the task.  Values: [Inbox, Later, Today, Upcoming]

completed

boolean

Completed

Indicate if the task will be marked as completed.

due_on

string(date)

Due date

Due date of the task.

 


 

TaskResponse

Summary:

Description: An Asana task.

 

          Properties:

Name

Type

Summary

id

integer(int32)

Task ID

 

created_at

string(date-time)

Created date

yyyy-MM-ddTHH:mm:ss.fffZ

modified_at

string(date-time)

Modified date

yyyy-MM-ddTHH:mm:ss.fffZ

name

string

Task name

 

notes

string

Task notes

 

completed

boolean

Completed

 

assignee

Assignee

Assignee

The user to whom this task is assigned.

assignee_status

string

Asignee status

Scheduling status of the task.

completed_at

string(date-time)

Completed date and time

yyyy-MM-ddTHH:mm:ss.fffZ

due_on

string(date)

Due date

yyyy-MM-dd

due_at

string

Due date and time

yyyy-MM-ddTHH:mm:ss.fffZ

workspace

WorkSpace

Workspace

The workspace.

num_hearts

integer(int32)

Number of likes

 

hearted

boolean

Liked

 


 

TaskResponseV2

Summary:

Description: An Asana task.

 

          Properties:

Name

Type

Summary

gid

string

Task ID

 

created_at

string(date-time)

Created date

yyyy-MM-ddTHH:mm:ss.fffZ

modified_at

string(date-time)

Modified date

yyyy-MM-ddTHH:mm:ss.fffZ

name

string

Task name

 

notes

string

Task notes

 

completed

boolean

Completed

 

assignee

AssigneeV2

Assignee

The user to whom this task is assigned.

assignee_status

string

Asignee status

Scheduling status of the task.

completed_at

string(date-time)

Completed date and time

yyyy-MM-ddTHH:mm:ss.fffZ

due_on

string(date)

Due date

yyyy-MM-dd

due_at

string

Due date and time

yyyy-MM-ddTHH:mm:ss.fffZ

workspace

WorkSpaceV2

Workspace

The workspace.

num_hearts

integer(int32)

Number of likes

 

hearted

boolean

Liked

 


 

UserResponse

Summary:

Description: An Asana user.

 

          Properties:

Name

Type

Summary

id

integer(int32)

User ID

 

name

string

User name

 

email

string

Email

 


 

UserResponseV2

Summary:

Description: An Asana user.

 

          Properties:

Name

Type

Summary

gid

string

User ID

 

name

string

User name

 

email

string

Email

 


 

WorkSpace

Summary: Workspace

Description: The workspace.

 

          Properties:

Name

Type

Summary

id

integer

ID

 

name

string

name

 


 

WorkSpaceV2

Summary: Workspace

Description: The workspace.

 

          Properties:

Name

Type

Summary

gid

string

ID

 

name

string

name