Asana Connector for SSIS

Read and write data related to Tasks, Projects, Workspaces, Portfolios, TimeEntries, Memberships and more.

In this article you will learn how to quickly and efficiently integrate Asana data in SSIS without coding. We will use high-performance Asana Connector to easily connect to Asana and then access the data inside SSIS.

Let's follow the steps below to see how we can accomplish that!

Download Documentation

Video Tutorial - Integrate Asana data in SSIS

This video covers the following topics and more, so please watch carefully. After watching the video, follow the steps outlined in this article:

  • How to download and install the required PowerPack for Asana integration in SSIS
  • How to configure the connection for Asana
  • Features of the ZappySys API Source (Authentication / Query Language / Examples / Driver UI)
  • How to use the Asana in SSIS

Prerequisites

Before we begin, make sure the following prerequisites are met:

  1. SSIS designer installed. Sometimes it is referred as BIDS or SSDT (download it from Microsoft).
  2. Basic knowledge of SSIS package development using Microsoft SQL Server Integration Services.
  3. SSIS PowerPack is installed (if you are new to SSIS PowerPack, then get started!).

Read data from Asana in SSIS (Export data)

In this section we will learn how to configure and use Asana Connector in API Source to extract data from Asana.

  1. Begin with opening Visual Studio and Create a New Project.

  2. Select Integration Service Project and in new project window set the appropriate name and location for project. And click OK.

  3. In the new SSIS project screen you will find the following:

    1. SSIS ToolBox on left side bar
    2. Solution Explorer and Property Window on right bar
    3. Control flow, data flow, event Handlers, Package Explorer in tab windows
    4. Connection Manager Window in the bottom

    SSIS Project Screen
    Note: If you don't see ZappySys SSIS PowerPack Task or Components in SSIS Toolbox, please refer to this help link.
  4. Now, Drag and Drop SSIS Data Flow Task from SSIS Toolbox. Double click on the Data Flow Task to see Data Flow designer.

    SSIS Data Flow Task - Drag and Drop
  5. From the SSIS toolbox drag and API Source (Predefined Templates) on the data flow designer surface, and double click on it to edit it:
    SSIS API Source (Predefined Templates) - Drag and Drop

  6. Select New Connection to create a new connection:
    API Source - New Connection

  7. Use a preinstalled Asana Connector from Popular Connector List or press Search Online radio button to download Asana Connector. Once downloaded simply use it in the configuration:

    Asana
    Asana Connector Selection

  8. Proceed with selecting the desired Authentication Type. Then select API Base URL (in most cases default one is the right one). Finally, fill in all the required parameters and set optional parameters if needed. You may press a link Steps to Configure which will help set certain parameters. More info is available in Authentication section.

    Steps how to get and use Asana credentials
    Here is how to obtain a Personal Access Token (PAT) in Asana:
    1. Open My apps in Asana portal and click Create new token button: Create Personal Access Token in Asana
    2. Once a popup opens, name your new token: Name Personal Access Token in Asana
    3. Then click Copy button to copy the token: Use Personal Access Token to get Asana data via REST API
    4. Now go to SSIS package or ODBC data source and use this token in Personal Access Token authentication configuration.
    5. Choose Default Workspace and Default Project to work with.
    6. Click Test Connection to confirm the connection is working.
    7. Done! Now you are ready to use Asana Connector!

    Configuring authentication parameters
    Asana
    Personal Access Token [Http]
    https://app.asana.com/api/1.0
    Required Parameters
    Enter Token (Personal Access Token - PAT) Fill-in the parameter...
    Default Workspace Fill-in the parameter...
    Default Project Fill-in the parameter...
    Optional Parameters
    RetryMode RetryWhenStatusCodeMatch
    RetryStatusCodeList 429
    RetryCountMax 5
    RetryMultiplyWaitTime True
    ZappySys Http Connection
    Steps how to get and use Asana credentials
    Here is how to register an OAuth app in Asana:
    1. Open My apps in Asana portal and click Create new app button: Create new OAuth app in Asana
    2. Once a popup opens, name your app and check two options, and click Create app button: Name OAuth app in Asana
    3. Then copy Client ID and Client secret and save them in a file (we will need them for authentication): Use OAuth app to get Asana data via REST API
    4. Continue by selecting OAuth menu item on your left and click Add redirect URL button (you can have your own or use https://zappysys.com/oauth): Add redirect URL to Asana OAuth app
    5. Proceed by clicking on the Manage distribution section on your left.
    6. Then specify workspaces your app needs to access (use Any workspace to access them all): Choose distribution method in Asana OAuth app
    7. Once you do that, click Save changes button.
    8. Now go to SSIS package or ODBC data source and use Client ID, Client Secret, and Redirect URL in OAuth app authentication configuration.
    9. When you are done with that, click Generate Token button to generate Access and Refresh Tokens.
    10. Choose Default Workspace and Default Project to work with.
    11. Click Test Connection to confirm the connection is working.
    12. Done! Now you are ready to use Asana Connector!

    Configuring authentication parameters
    Asana
    OAuth app [OAuth]
    https://app.asana.com/api/1.0
    Required Parameters
    ClientId Fill-in the parameter...
    Client Secret Fill-in the parameter...
    Default Workspace (** Select after Token is generated **) Fill-in the parameter...
    Default Project (** Select after Token is generated **) Fill-in the parameter...
    Optional Parameters
    Permissions default
    Redirect URL https://zappysys.com/oauth
    RetryMode RetryWhenStatusCodeMatch
    RetryStatusCodeList 429
    RetryCountMax 5
    RetryMultiplyWaitTime True
    ZappySys OAuth Connection

  9. Select the desired endpoint, change/pass the properties values, and click on Preview Data button to make the API call.

    API Source - Asana
    Read and write data related to Tasks, Projects, Workspaces, Portfolios, TimeEntries, Memberships and more.
    API Source - Select Endpoint

  10. That's it! We are done! Just in a few clicks we configured the call to Asana using Asana Connector.

    You can load the source data into your desired destination using the Upsert Destination, which supports SQL Server, PostgreSQL, and Amazon Redshift. We also offer other destinations such as CSV, Excel, Azure Table, Salesforce, and more. You can check out our SSIS PowerPack Tasks and components for more options. (*loaded in Trash Destination)

    Execute Package - Reading data from Asana and load into target

Write data to Asana using SSIS (Import data)

In this section we will learn how to configure and use Asana Connector in the API Destination to write data to Asana.

Video tutorial

This video covers following and more so watch carefully. After watching this video follow the steps described in this article.

  • How to download SSIS PowerPack for Asana integration in SSIS
  • How to configure connection for Asana
  • How to write or lookup data to Asana
  • Features about SSIS API Destination
  • Using Asana Connector in SSIS

Step-by-step instructions

In upper section we learned how to read data, now in this section we will learn how to configure Asana in the API Source to POST data to the Asana.

  1. Read the data from the source, being any desired source component. In example we will use ZappySys Dummy Data Source component.

  2. From the SSIS Toolbox drag and drop API Destination (Predefined Templates) on the Data Flow Designer surface and connect source component with it, and double click to edit it.
    SSIS API Destination (Predefined Templates) - Drag and Drop

  3. Select New Connection to create a new connection:

    API Destination - Asana
    Read and write data related to Tasks, Projects, Workspaces, Portfolios, TimeEntries, Memberships and more.
    API Destination - New Connection

  4. Use a preinstalled Asana Connector from Popular Connector List or press Search Online radio button to download Asana Connector. Once downloaded simply use it in the configuration:

    Asana
    Asana Connector Selection

  5. Proceed with selecting the desired Authentication Type. Then select API Base URL (in most cases default one is the right one). Finally, fill in all the required parameters and set optional parameters if needed. You may press a link Steps to Configure which will help set certain parameters. More info is available in Authentication section.

    Steps how to get and use Asana credentials
    Here is how to obtain a Personal Access Token (PAT) in Asana:
    1. Open My apps in Asana portal and click Create new token button: Create Personal Access Token in Asana
    2. Once a popup opens, name your new token: Name Personal Access Token in Asana
    3. Then click Copy button to copy the token: Use Personal Access Token to get Asana data via REST API
    4. Now go to SSIS package or ODBC data source and use this token in Personal Access Token authentication configuration.
    5. Choose Default Workspace and Default Project to work with.
    6. Click Test Connection to confirm the connection is working.
    7. Done! Now you are ready to use Asana Connector!

    Configuring authentication parameters
    Asana
    Personal Access Token [Http]
    https://app.asana.com/api/1.0
    Required Parameters
    Enter Token (Personal Access Token - PAT) Fill-in the parameter...
    Default Workspace Fill-in the parameter...
    Default Project Fill-in the parameter...
    Optional Parameters
    RetryMode RetryWhenStatusCodeMatch
    RetryStatusCodeList 429
    RetryCountMax 5
    RetryMultiplyWaitTime True
    ZappySys Http Connection
    Steps how to get and use Asana credentials
    Here is how to register an OAuth app in Asana:
    1. Open My apps in Asana portal and click Create new app button: Create new OAuth app in Asana
    2. Once a popup opens, name your app and check two options, and click Create app button: Name OAuth app in Asana
    3. Then copy Client ID and Client secret and save them in a file (we will need them for authentication): Use OAuth app to get Asana data via REST API
    4. Continue by selecting OAuth menu item on your left and click Add redirect URL button (you can have your own or use https://zappysys.com/oauth): Add redirect URL to Asana OAuth app
    5. Proceed by clicking on the Manage distribution section on your left.
    6. Then specify workspaces your app needs to access (use Any workspace to access them all): Choose distribution method in Asana OAuth app
    7. Once you do that, click Save changes button.
    8. Now go to SSIS package or ODBC data source and use Client ID, Client Secret, and Redirect URL in OAuth app authentication configuration.
    9. When you are done with that, click Generate Token button to generate Access and Refresh Tokens.
    10. Choose Default Workspace and Default Project to work with.
    11. Click Test Connection to confirm the connection is working.
    12. Done! Now you are ready to use Asana Connector!

    Configuring authentication parameters
    Asana
    OAuth app [OAuth]
    https://app.asana.com/api/1.0
    Required Parameters
    ClientId Fill-in the parameter...
    Client Secret Fill-in the parameter...
    Default Workspace (** Select after Token is generated **) Fill-in the parameter...
    Default Project (** Select after Token is generated **) Fill-in the parameter...
    Optional Parameters
    Permissions default
    Redirect URL https://zappysys.com/oauth
    RetryMode RetryWhenStatusCodeMatch
    RetryStatusCodeList 429
    RetryCountMax 5
    RetryMultiplyWaitTime True
    ZappySys OAuth Connection

  6. Select the desired endpoint, change/pass the properties values, and go to the Mappings tab to map the columns.

    API Destination - Asana
    Read and write data related to Tasks, Projects, Workspaces, Portfolios, TimeEntries, Memberships and more.
    API Destination - Select Endpoint

  7. Finally, map the desired columns:

    API Destination - Asana
    Read and write data related to Tasks, Projects, Workspaces, Portfolios, TimeEntries, Memberships and more.
    API Destination - Columns Mapping

  8. That's it; we successfully configured the POST API Call. In a few clicks we configured the Asana API call using ZappySys Asana Connector

    Execute Package - Reading data from API Source and load into target

Load Asana data into SQL Server using Upsert Destination (Insert or Update)

Once you configured the data source, you can load Asana data into SQL Server using Upsert Destination.

Upsert Destination can merge or synchronize source data with the target table. It supports Microsoft SQL Server, PostgreSQL, and Redshift databases as targets. Upsert Destination also supports very fast bulk upsert operation along with bulk delete.

Upsert operation - a database operation which performs INSERT or UPDATE SQL commands based on record's existence condition in the target table. It inserts records that don't have matching records in the target table or updates them, if they do, by matching them by key columns.

Upsert Destination supports INSERT, UPDATE, and DELETE operations, so it is similar to SQL Server's MERGE command, except it can be used directly in SSIS package.

  1. From the SSIS Toolbox drag-and-drop Upsert Destination component onto the Data Flow designer background.

  2. Connect your SSIS source component to Upsert Destination.

  3. Double-click on Upsert Destination component to open configuration window.

  4. Start by selecting the Action from the list.

  5. Next, select the desired target connection or create one by clicking <New [provider] Connection> menu item from the Target Connection dropdown.

  6. Then select a table from the Target Table list or click New button to create a new table based on the source columns.

  7. Continue by checking Insert and Update options according to your scenario (e.g. if Update option is unchecked, no updates will be made).

  8. Finally, click Map All button to map all columns and then select the Key columns to match the columns on:

    Configure SSIS Upsert Destination component to merge data with SQL Server, PostgreSQL, or Redshift table
  9. Click OK to save the configuration.

  10. Run the package and Asana data will be merged with the target table in SQL Server, PostgreSQL, or Redshift:

    Execute Package - Reading data from API Source and load into target
  11. Done!

Deploy and schedule SSIS package

After you are done creating SSIS package, most likely, you want to deploy it to SQL Server Catalog and run it periodically. Just follow the instructions in this article:

Running SSIS package in Azure Data Factory (ADF)

To use SSIS PowerPack in ADF, you must first prepare Azure-SSIS Integration Runtime. Follow this link for detailed instructions:

Actions supported by Asana Connector

Asana Connector supports following actions for REST API integration:

Download Attachment

Description

Download a specific attachment by Id.

Parameters

You can provide the following parameters to this action:

  • Attachment ID
  • Fields

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • StatusCode
  • Name
  • Path
  • ResourceSubtype
  • ConnectedToApp
  • CreatedAt
  • DownloadUrl
  • Host
  • ParentId
  • ParentName
  • ParentResourceSubtype
  • PermanentUrl
  • Size
  • ViewUrl

Visit documentation for more information.

Download Multiple Attachments

Description

Download Multiple Attachments for a specified parent.There are three possible parent values for this request: project, project_brief, and task. For a project, an attachment refers to a file uploaded to the [Key resources] section in the project Overview. For a project brief, an attachment refers to inline files in the project brief itself. For a task, an attachment refers to a file directly associated to that task. Note that within the Asana app, inline images in the task description do not appear in the index of image thumbnails nor as stories in the task. However, requests made to GET /attachments for a task will return all of the images in the task, including inline images.

Parameters

You can provide the following parameters to this action:

  • Parent Id (e.g. Id of Project, Task or ProjectBrief)
  • OverwriteFile
  • SaveFolder
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • StatusCode
  • SavedFilePath
  • SavedBytes
  • Id
  • Name
  • ResourceSubtype
  • ConnectedToApp
  • CreatedAt
  • DownloadUrl
  • Host
  • ParentId
  • ParentName
  • ParentResourceSubtype
  • PermanentUrl
  • Size
  • ViewUrl

Visit documentation for more information.

Get Allocations

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Project Id
  • User Id
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • ResourceSubtype
  • AssigneeId
  • AssigneeName
  • ParentId
  • ParentName
  • StartDate
  • EndDate
  • CreatedById
  • CreatedByName
  • EffortType
  • EffortValue

Visit documentation for more information.

Get Attachments (For Project refer to Key-Resources Upload only)

Description

There are three possible parent values for this request: project, project_brief, and task. For a project, an attachment refers to a file uploaded to the [Key resources] section in the project Overview. For a project brief, an attachment refers to inline files in the project brief itself. For a task, an attachment refers to a file directly associated to that task. Note that within the Asana app, inline images in the task description do not appear in the index of image thumbnails nor as stories in the task. However, requests made to GET /attachments for a task will return all of the images in the task, including inline images.

Parameters

You can provide the following parameters to this action:

  • Parent Id (e.g. Id of Project, Task or ProjectBrief)
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ResourceSubtype
  • ConnectedToApp
  • CreatedAt
  • DownloadUrl
  • Host
  • ParentId
  • ParentName
  • ParentResourceSubtype
  • PermanentUrl
  • Size
  • ViewUrl

Visit documentation for more information.

Get Goals

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Project Id
  • Portfolio Id
  • Team Id
  • Is Workspace Level
  • Time Periods (e.g. Id1,Id2)
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • DueOn
  • HtmlNotes
  • IsWorkspaceLevel
  • Liked
  • Notes
  • StartOn
  • Status
  • CurrentStatusUpdateId
  • CurrentStatusUpdateResourceSubtype
  • CurrentStatusUpdateTitle
  • Followers
  • Likes
  • MetricId
  • MetricCurrencyCode
  • MetricCurrentDisplayValue
  • MetricCurrentNumberValue
  • MetricInitialNumberValue
  • MetricPrecision
  • MetricProgressSource
  • MetricResourceSubtype
  • MetricTargetNumberValue
  • MetricUnit
  • MetricCanManage
  • NumLikes
  • OwnerId
  • OwnerName
  • TeamId
  • TeamName
  • TimePeriodId
  • TimePeriodDisplayName
  • TimePeriodEndOn
  • TimePeriodPeriod
  • TimePeriodStartOn
  • WorkspaceId
  • WorkspaceName

Visit documentation for more information.

Get Memberships

Description

.

Parameters

You can provide the following parameters to this action:

  • Project Id
  • PortfolioId
  • GoalId
  • Member or Team Id (Use with Project OR Portfolio OR Goal)
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • ResourceSubtype
  • MemberId
  • MemberName
  • ParentId
  • ParentName
  • ParentOwnerId
  • ParentOwnerName
  • AccessLevel
  • PortfolioId
  • PortfolioName
  • UserId
  • UserName

Visit documentation for more information.

Get Portfolio Custom Fields

Description

.

Parameters

You can provide the following parameters to this action:

  • Portfolio Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Type
  • Description
  • AsanaCreatedField
  • CreatedById
  • CreatedByName
  • RepresentationType
  • CustomLabel
  • CustomLabelPosition
  • Enabled
  • EnumOptions
  • Format
  • HasNotificationsEnabled
  • IsGlobalToWorkspace
  • IsFormulaField
  • IsValueReadOnly
  • Precision
  • ResourceSubtype
  • IdPrefix
  • ValuePath
  • Id
  • ProjectId
  • ProjectName
  • IsImportant
  • ParentId
  • ParentName

Visit documentation for more information.

Get Portfolios

Description

.

Parameters

You can provide the following parameters to this action:

  • Owner Id
  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Color
  • CreatedAt
  • CreatedById
  • CreatedByName
  • CustomFieldSettings
  • CurrentStatusUpdateId
  • CurrentStatusUpdateTitle
  • CurrentStatusUpdateResourceSubtype
  • DueOn
  • CustomFields
  • Members
  • OwnerId
  • OwnerName
  • StartOn
  • WorkspaceId
  • WorkspaceName
  • PermalinkUrl
  • Public
  • DefaultAccessLevel
  • PrivacySetting
  • ProjectTemplates

Visit documentation for more information.

Get Project (Single)

Description

.

Parameters

You can provide the following parameters to this action:

  • Project Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Archived
  • Color
  • CreatedAt
  • CurrentStatusId
  • CurrentStatusTitle
  • CurrentStatusText
  • CurrentStatusHtmlText
  • CurrentStatusColor
  • CurrentStatusAuthorId
  • CurrentStatusAuthorName
  • CurrentStatusCreatedAt
  • CurrentStatusCreatedById
  • CurrentStatusCreatedByName
  • CurrentStatusModifiedAt
  • CurrentStatusUpdateId
  • CurrentStatusUpdateTitle
  • CurrentStatusUpdateResourceSubtype
  • CustomFieldSettings
  • DefaultAccessLevel
  • DefaultView
  • DueDate
  • DueOn
  • HtmlNotes
  • Members
  • ModifiedAt
  • Notes
  • Public
  • StartOn
  • WorkspaceId
  • WorkspaceName
  • CustomFields
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • Followers
  • OwnerId
  • OwnerName
  • TeamId
  • TeamName
  • Icon
  • PermalinkUrl
  • ProjectBriefId
  • CreatedFromTemplateId
  • CreatedFromTemplateName

Visit documentation for more information.

Get Project Custom Fields

Description

.

Parameters

You can provide the following parameters to this action:

  • Project Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Type
  • Description
  • AsanaCreatedField
  • CreatedById
  • CreatedByName
  • RepresentationType
  • CustomLabel
  • CustomLabelPosition
  • Enabled
  • EnumOptions
  • Format
  • HasNotificationsEnabled
  • IsGlobalToWorkspace
  • IsFormulaField
  • IsValueReadOnly
  • Precision
  • ResourceSubtype
  • IdPrefix
  • ValuePath
  • FieldId
  • ProjectId
  • ParentId
  • ParentName
  • ProjectName
  • IsImportant

Visit documentation for more information.

Get Project Section

Description

.

Parameters

You can provide the following parameters to this action:

  • Project Id
  • Section Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • CreatedAt
  • ProjectId
  • ProjectName

Visit documentation for more information.

Get Project Sections

Description

.

Parameters

You can provide the following parameters to this action:

  • Project Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • CreatedAt
  • ProjectId
  • ProjectName

Visit documentation for more information.

Get Projects

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Team Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Archived
  • Color
  • CreatedAt
  • CurrentStatusId
  • CurrentStatusTitle
  • CurrentStatusText
  • CurrentStatusHtmlText
  • CurrentStatusColor
  • CurrentStatusAuthorId
  • CurrentStatusAuthorName
  • CurrentStatusCreatedAt
  • CurrentStatusCreatedById
  • CurrentStatusCreatedByName
  • CurrentStatusModifiedAt
  • CurrentStatusUpdateId
  • CurrentStatusUpdateTitle
  • CurrentStatusUpdateResourceSubtype
  • CustomFieldSettings
  • DefaultAccessLevel
  • DefaultView
  • DueDate
  • DueOn
  • HtmlNotes
  • Members
  • ModifiedAt
  • Notes
  • Public
  • StartOn
  • WorkspaceId
  • WorkspaceName
  • CustomFields
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • Followers
  • OwnerId
  • OwnerName
  • TeamId
  • TeamName
  • Icon
  • PermalinkUrl
  • ProjectBriefId
  • CreatedFromTemplateId
  • CreatedFromTemplateName

Visit documentation for more information.

Get Sub Tasks

Description

Only enter TaskId if QueryBy=task else you may get error.

Parameters

You can provide the following parameters to this action:

  • QueryBy
  • Parent Task Id
  • Project Id
  • Workspace Id
  • Assignee Id
  • Section Id
  • Tag Id
  • UserTaskListId
  • Completed Since
  • Modified Since
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ActualTimeMinutes
  • ApprovalStatus
  • AssigneeStatus
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • CreatedAt
  • CreatedById
  • CreatedByName
  • Dependencies
  • Dependents
  • Subtasks
  • DueAt
  • DueOn
  • ExternalData
  • ExternalId
  • Hearted
  • Hearts
  • HtmlNotes
  • IsRenderedAsSeparator
  • Liked
  • Likes
  • Memberships
  • ModifiedAt
  • Notes
  • NumHearts
  • NumLikes
  • NumSubtasks
  • ResourceSubtype
  • StartAt
  • StartOn
  • AssigneeId
  • AssigneeName
  • AssigneeSectionId
  • AssigneeSectionName
  • CustomFields
  • Followers
  • ParentId
  • ParentName
  • ParentCreatedBy
  • ParentResourceSubtype
  • PermalinkUrl
  • Projects
  • Projects1Id
  • Projects1Name
  • Projects2Id
  • Projects2Name
  • Projects3Id
  • Projects3Name
  • Tags
  • Tags1Id
  • Tags1Name
  • Tags2Id
  • Tags2Name
  • Tags3Id
  • Tags3Name
  • Tags4Id
  • Tags4Name
  • Tags5Id
  • Tags5Name
  • WorkspaceId
  • WorkspaceName
  • [Dynamic Column]

Visit documentation for more information.

Get Tags

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Color
  • CreatedAt
  • Followers
  • Notes
  • PermalinkUrl
  • WorkspaceId
  • WorkspaceName

Visit documentation for more information.

Get Task (Single)

Description

.

Parameters

You can provide the following parameters to this action:

  • TaskId
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ActualTimeMinutes
  • ApprovalStatus
  • AssigneeStatus
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • CreatedAt
  • CreatedById
  • CreatedByName
  • Dependencies
  • Dependents
  • Subtasks
  • DueAt
  • DueOn
  • ExternalData
  • ExternalId
  • Hearted
  • Hearts
  • HtmlNotes
  • IsRenderedAsSeparator
  • Liked
  • Likes
  • Memberships
  • ModifiedAt
  • Notes
  • NumHearts
  • NumLikes
  • NumSubtasks
  • ResourceSubtype
  • StartAt
  • StartOn
  • AssigneeId
  • AssigneeName
  • AssigneeSectionId
  • AssigneeSectionName
  • CustomFields
  • Followers
  • ParentId
  • ParentName
  • ParentCreatedBy
  • ParentResourceSubtype
  • PermalinkUrl
  • Projects
  • Projects1Id
  • Projects1Name
  • Projects2Id
  • Projects2Name
  • Projects3Id
  • Projects3Name
  • Tags
  • Tags1Id
  • Tags1Name
  • Tags2Id
  • Tags2Name
  • Tags3Id
  • Tags3Name
  • Tags4Id
  • Tags4Name
  • Tags5Id
  • Tags5Name
  • WorkspaceId
  • WorkspaceName
  • [Dynamic Column]

Visit documentation for more information.

Get Tasks

Description

.

Parameters

You can provide the following parameters to this action:

  • QueryBy
  • Project Id
  • Workspace Id
  • Assignee Id
  • Section Id
  • Tag Id
  • UserTaskListId
  • Completed Since
  • Modified Since
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ActualTimeMinutes
  • ApprovalStatus
  • AssigneeStatus
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • CreatedAt
  • CreatedById
  • CreatedByName
  • Dependencies
  • Dependents
  • Subtasks
  • DueAt
  • DueOn
  • ExternalData
  • ExternalId
  • Hearted
  • Hearts
  • HtmlNotes
  • IsRenderedAsSeparator
  • Liked
  • Likes
  • Memberships
  • ModifiedAt
  • Notes
  • NumHearts
  • NumLikes
  • NumSubtasks
  • ResourceSubtype
  • StartAt
  • StartOn
  • AssigneeId
  • AssigneeName
  • AssigneeSectionId
  • AssigneeSectionName
  • CustomFields
  • Followers
  • ParentId
  • ParentName
  • ParentCreatedBy
  • ParentResourceSubtype
  • PermalinkUrl
  • Projects
  • Projects1Id
  • Projects1Name
  • Projects2Id
  • Projects2Name
  • Projects3Id
  • Projects3Name
  • Tags
  • Tags1Id
  • Tags1Name
  • Tags2Id
  • Tags2Name
  • Tags3Id
  • Tags3Name
  • Tags4Id
  • Tags4Name
  • Tags5Id
  • Tags5Name
  • WorkspaceId
  • WorkspaceName
  • [Dynamic Column]

Visit documentation for more information.

Get Time Tracking Entries

Description

.

Parameters

You can provide the following parameters to this action:

  • Task Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • CreatedById
  • CreatedByName
  • DurationMinutes
  • EnteredOn
  • CreatedAt
  • TaskId
  • TaskName

Visit documentation for more information.

Get User (Single)

Description

.

Parameters

You can provide the following parameters to this action:

  • User Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Email
  • PhotoImage1024X1024
  • PhotoImage128X128
  • PhotoImage21X21
  • PhotoImage27X27
  • PhotoImage36X36
  • PhotoImage60X60
  • Workspaces

Visit documentation for more information.

Get User Task Lists

Description

.

Parameters

You can provide the following parameters to this action:

  • User Id
  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • OwnerId
  • OwnerName
  • WorkspaceId
  • WorkspaceName

Visit documentation for more information.

Get Users

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Email
  • PhotoImage1024X1024
  • PhotoImage128X128
  • PhotoImage21X21
  • PhotoImage27X27
  • PhotoImage36X36
  • PhotoImage60X60
  • Workspaces

Visit documentation for more information.

Get Workspace (Single)

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • EmailDomains
  • IsOrganization

Visit documentation for more information.

Get Workspace Custom Fields

Description

.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Type
  • Description
  • AsanaCreatedField
  • CreatedById
  • CreatedByName
  • RepresentationType
  • CustomLabel
  • CustomLabelPosition
  • Enabled
  • EnumOptions
  • Format
  • HasNotificationsEnabled
  • IsGlobalToWorkspace
  • IsFormulaField
  • IsValueReadOnly
  • Precision
  • ResourceSubtype
  • IdPrefix
  • ValuePath

Visit documentation for more information.

Get Workspace Tasks

Description

Get tasks for all projects in a specified workspace (or default workspace).

Parameters

You can provide the following parameters to this action:

  • Fields
  • Workspace Id
  • Completed Since
  • Modified Since
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ActualTimeMinutes
  • ApprovalStatus
  • AssigneeStatus
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • CreatedAt
  • CreatedById
  • CreatedByName
  • Dependencies
  • Dependents
  • Subtasks
  • DueAt
  • DueOn
  • ExternalData
  • ExternalId
  • Hearted
  • Hearts
  • HtmlNotes
  • IsRenderedAsSeparator
  • Liked
  • Likes
  • Memberships
  • ModifiedAt
  • Notes
  • NumHearts
  • NumLikes
  • NumSubtasks
  • ResourceSubtype
  • StartAt
  • StartOn
  • AssigneeId
  • AssigneeName
  • AssigneeSectionId
  • AssigneeSectionName
  • CustomFields
  • Followers
  • ParentId
  • ParentName
  • ParentCreatedBy
  • ParentResourceSubtype
  • PermalinkUrl
  • Projects
  • Projects1Id
  • Projects1Name
  • Projects2Id
  • Projects2Name
  • Projects3Id
  • Projects3Name
  • Tags
  • Tags1Id
  • Tags1Name
  • Tags2Id
  • Tags2Name
  • Tags3Id
  • Tags3Name
  • Tags4Id
  • Tags4Name
  • Tags5Id
  • Tags5Name
  • WorkspaceId
  • WorkspaceName
  • [Dynamic Column]
  • ProjectId
  • ProjectName

Visit documentation for more information.

Get Workspace Teams

Description

Returns records for all teams in the workspace visible to the authorized user.

Parameters

You can provide the following parameters to this action:

  • Workspace Id
  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • Description
  • HtmlDescription
  • OrganizationId
  • OrganizationName
  • PermalinkUrl
  • Visibility
  • EditTeamNameOrDescriptionAccessLevel
  • EditTeamVisibilityOrTrashTeamAccessLevel
  • MemberInviteManagementAccessLevel
  • GuestInviteManagementAccessLevel
  • JoinRequestManagementAccessLevel
  • TeamContentManagementAccessLevel
  • TeamMemberRemovalAccessLevel

Visit documentation for more information.

Get Workspaces

Description

.

Parameters

You can provide the following parameters to this action:

  • Fields
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • EmailDomains
  • IsOrganization

Visit documentation for more information.

Search Tasks (Advanced Filter)

Description

Search tasks with in a specified workspace (or default workspace) using advanced server side filters.

Parameters

You can provide the following parameters to this action:

  • Fields
  • Workspace Id
  • Text
  • Projects (NOT)
  • Projects (ALL)
  • Projects (ANY)
  • Sections (NOT)
  • Sections (ALL)
  • Sections (ANY)
  • Tags (NOT)
  • Tags (ALL)
  • Tags (ANY)
  • Assigned By (NOT)
  • Assigned By (ALL)
  • Assigned By (ANY)
  • Portfolios (ANY)
  • Teams (ANY)
  • Due On
  • Due On Before
  • Due On After
  • Due On (Null)
  • Start On
  • Start On Before
  • Start On After
  • Start On (Null)
  • Created On
  • Created On Before
  • Created On After
  • Created On (Null)
  • Modified On
  • Modified On Before
  • Modified On After
  • Modified On (Null)
  • Completed On
  • Completed On Before
  • Completed On After
  • Completed On (Null)
  • Due At
  • Due At Before
  • Due At After
  • Start At
  • Start At Before
  • Start At After
  • Created At
  • Created At Before
  • Created At After
  • Modified At
  • Modified At Before
  • Modified At After
  • Completed At
  • Completed At Before
  • Completed At After
  • Is Blocked
  • Is Blocking
  • Is Subtask
  • Has Attachment
  • Completed
  • Sort By
  • Sort Ascending
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id
  • Name
  • ActualTimeMinutes
  • ApprovalStatus
  • AssigneeStatus
  • Completed
  • CompletedAt
  • CompletedById
  • CompletedByName
  • CreatedAt
  • CreatedById
  • CreatedByName
  • Dependencies
  • Dependents
  • Subtasks
  • DueAt
  • DueOn
  • ExternalData
  • ExternalId
  • Hearted
  • Hearts
  • HtmlNotes
  • IsRenderedAsSeparator
  • Liked
  • Likes
  • Memberships
  • ModifiedAt
  • Notes
  • NumHearts
  • NumLikes
  • NumSubtasks
  • ResourceSubtype
  • StartAt
  • StartOn
  • AssigneeId
  • AssigneeName
  • AssigneeSectionId
  • AssigneeSectionName
  • CustomFields
  • Followers
  • ParentId
  • ParentName
  • ParentCreatedBy
  • ParentResourceSubtype
  • PermalinkUrl
  • Projects
  • Projects1Id
  • Projects1Name
  • Projects2Id
  • Projects2Name
  • Projects3Id
  • Projects3Name
  • Tags
  • Tags1Id
  • Tags1Name
  • Tags2Id
  • Tags2Name
  • Tags3Id
  • Tags3Name
  • Tags4Id
  • Tags4Name
  • Tags5Id
  • Tags5Name
  • WorkspaceId
  • WorkspaceName
  • [Dynamic Column]

Visit documentation for more information.

Make Generic API Request

Description

This is generic endpoint. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL.

Parameters

You can provide the following parameters to this action:

  • Url
  • Body
  • IsMultiPart
  • Filter
  • Headers
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id

Visit documentation for more information.

Make Generic API Request (Bulk Write)

Description

This is a generic endpoint for bulk write purpose. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL.

Parameters

You can provide the following parameters to this action:

  • Url
  • IsMultiPart
  • Filter
  • Headers
  • Limit

Input Fields

You can provide the following fields to this action:

  • N/A

Output Fields

The following fields are returned after calling this action:

  • Id

Visit documentation for more information.

Conclusion

In this article we showed you how to connect to Asana in SSIS and integrate data without any coding, saving you time and effort.

We encourage you to download Asana Connector for SSIS and see how easy it is to use it for yourself or your team.

If you have any questions, feel free to contact ZappySys support team. You can also open a live chat immediately by clicking on the chat icon below.

Download Asana Connector for SSIS Documentation

More integrations

Other connectors for SSIS

All
Big Data & NoSQL
Database
CRM & ERP
Marketing
Collaboration
Cloud Storage
Reporting
Commerce
API & Files

Other application integration scenarios for Asana

All
Data Integration
Database
BI & Reporting
Productivity
Programming Languages
Automation & Scripting
ODBC applications