Questions tagged [asana]

Asana is a flexible task manager that people can use for Customer Relations Management, Project Management, and Team Management.

Asana, found at asana.com, is a HTML5 flexible task manager. A workspace is a group of individuals and projects, and each project has a name and a list of tasks. Each task can be assigned to any individual in that workspace.

Some people use Asana to handle customer-relations. Each new customer becomes a project, and any task inside that project represents an interaction with the customer. The project itself would be used to store information about that customer.

Another use is project or team management. Every individual in the workspace is an employee, every project is a project that needs to be completed, and every task inside a project is a part of that project that needs to be done or has been done. The project itself would be used to store information about that project.

Asana can also be used as a bug tracker, a blog, and countless other things.

Asana features a REST API which can be used to create a variety of different extensions. Asana also has a Chrome extension.

528 questions
3
votes
1 answer

How can I get more detailed information about asana tasks?

I saw an example of "QUERYING FOR TASKS", but it only returns the id and name of the tasks, I would like to get more information about tasks (for example created_at, completed, due_on, followers, etc) by querying them with API.
Cshark
  • 43
  • 3
3
votes
1 answer

asana api listing unassigned tasks in a workspace

I'd like to list all unassigned tasks in a given workspace using asana API. Tried using "assignee=null" as follows: curl -u : "https://app.asana.com/api/1.0/tasks?workspace=&assignee=null" but it returns the error below: { "errors":…
adaria
  • 63
  • 6
3
votes
1 answer

Is there a way to invite a user to Asana through their API

I was wondering if there's an exposed API to invite a user to a workspace/project/task, thereby adding the user to the workspace.
2
votes
0 answers

HTML page to JSON to Asana task

Hi I'm new at Python and getting stuck with a couple of things. Firstly, I've got my script to do what I want, but can't get it to loop through all items (prod_image_wrap) items in the url. from __future__ import print_function import…
Cody
  • 58
  • 1
  • 5
2
votes
1 answer

How to get a complete file from mail attachment in java to send it through another APIs input?

I am creating an application where I need to get file attached in mail and then send that complete file as input of another API of portal called 'asana'. I don't want to save/ download the file locally. I referred this site to get the attached file…
Deva
  • 1,039
  • 1
  • 14
  • 40
2
votes
1 answer

Asana bad request when attempting to set custom field values (API)

I am attempting to create a new task using the Asana API with https://app.asana.com/api/1.0/tasks endpoint. I have been successful in creating some test tasks in the desired project. However I am now trying to also set the values of the custom…
Michael
  • 41
  • 5
2
votes
1 answer

Copy Asana Project to Google Sheets

I already have Zapier copying new tasks in Asana to a Google Sheets, but what I really need is a dump of ALL tasks (and due dates, etc.) from a given Asana project to a Google Sheets. From there, my Zap would be able to maintain the Sheets,…
acenright
  • 39
  • 2
2
votes
1 answer

How to use Omniauth Asana with Rails API only app

I have a Rails 5 API only app and an Angular JS Frontend app and would like to integrate with Asana API. I'm using the ruby-asana, omniauth and omniauth-asana gems. I start the request using Asana's JS library like so: var client =…
WagnerMatosUK
  • 4,309
  • 7
  • 56
  • 95
2
votes
1 answer

Accesing ASANA data using python requests

First of all, I'm not a Python guru as you can probably tell... So here we go. I'm trying to use Asana's API to pull data with Python requests (Projects, tasks, etc) and doing the authentication using Oauth 2.0... I've been trying to find a simple…
Juancho
  • 23
  • 7
2
votes
1 answer

How do you add linked text to a description in Asana?

There is a similar question here but the person answering said it is not possible. I have to believe he did not understand the question... So I apologize for asking again... I can paste an entire url into a description field in asana and it will…
2
votes
2 answers

Create webhook for Asana php

I'm trying to set up a webhook in Asana to send me event updates for a particular project. I am pretty novice so keep that in mind when reading and answering. My first post on here so go easy on me. Here's my code I am running. asanawebhook.php…
2
votes
1 answer

Include deleted tasks in API request

In a call to get recently modified tasks for a project (/api/1.0/projects/{PROJECT_ID}/tasks?modified_since={ONE_DAY_AGO}), is there a way to include tasks that were deleted and when they were deleted? If not, is there a separate endpoint for…
mlienau
  • 783
  • 11
  • 16
2
votes
2 answers

Export tasks with Comments from Asana

I want to export all the details from Asana i.e all workspaces, its projects and all tasks along with the comments. I tried exporting in Asana but I could only get the tasks without comments. Is there any way we can export all the tasks with the…
user2109788
  • 1,266
  • 2
  • 12
  • 29
2
votes
1 answer

Asana API - get all tasks and completion status

I am trying to use the Asana API to get all tasks within a project, as well as whether they have been completed. This seems to require the use of the opt_expand parameter, but I am having no luck with the following URL (and combinations of it):…
dojogeorge
  • 1,674
  • 3
  • 25
  • 35
2
votes
1 answer

Creating new task through WebHook with Asana API

I am working with a form system very similar to WUFOO that allows me to send data to an external website using WebHooks. I have been able to connect my form to my ASANA system through Zapier but I cannot seem to get the API system to operate…
1 2
3
35 36