Questions tagged [asana-api]

The Asana API is a RESTful interface, providing programmatic access to much of the data in the system

The Asana Api is a RESTful interface, providing programmatic access to much of the data in the system. It provides predictable URLs for accessing resources, and uses built-in HTTP features to receive commands and return responses. This makes it easy to communicate with from a wide variety of environments, from command-line utilities to gadgets to the browser URL bar itself.

The API accepts JSON or form-encoded content in requests and returns JSON content in all of its responses, including errors. Only the UTF-8 character encoding is supported for both requests and responses.

189 questions
0
votes
1 answer

ASANA Creating Subtasks - How not to show up on calendar as task

I am able to create a sub-task using the API but the sub-tasks show up on the calendar like tasks. But when using the ASANA front end, this does not happen. It seems that this happens when API is used to create a sub-task. I am successfully able to…
0
votes
1 answer

Connect to the Asana API with PHP

I'm trying to connect to the Asana API via Asana-php. When I create my index.php and put the code need to connect with OAuth I have some problems trying to connect to Asana. [this is my app in Asana][1]. How do I connect toAsana` or what I do wrong.…
Patrickr3
  • 1
  • 1
0
votes
1 answer

How do I create dependencies between tasks in Asana using the API?

We're excited about the dependencies in Asana (https://asana.com/guide/help/tasks/dependencies), however can't figure out how to access dependencies using the API. It appears that marking a task as dependent on another task is only via the GUI. …
Eric Pugh
  • 1,563
  • 11
  • 17
0
votes
1 answer

How to check if current user is a Workspace Admin in the Asana API?

I am working on managing user access to workspaces via the API. [Cleaning inactive users], and am running into issues where I can authenticate the user, but don't have a way to check if the user is a workspace admin. This becomes an issue because I…
0
votes
1 answer

Java Client Libraries: Configure read timeouts?

I am using the official Java client libraries (https://github.com/Asana/java-asana/) and I am frequently running into java.net.SocketTimeoutException: Read timed out and java.net.SocketTimeoutException: connect timed out problems. Is there any…
Peter Rietzler
  • 471
  • 5
  • 11
0
votes
1 answer

What is the correct type of the 'section' parameter in tasks/task_id/addProject?

I have the following task: $ curl "https://app.asana.com/api/1.0/tasks/259676837324664" | jq { "data": { "id": 259676837324664, "assignee": { "id": 202581546604537, "name": "Leonid" }, "assignee_status": "inbox", …
Remco
  • 260
  • 1
  • 7
0
votes
1 answer

Asana PHP API Connection Error : 443

I am trying to use the Asana PHP API to build a browser project for personal use, but I am facing problems with connecting to the API. This is the response i get when trying to fetch the user data from the API. Fatal error: Uncaught exception…
neeraj
  • 53
  • 1
  • 5
0
votes
1 answer

How to use OAuth 2.0 with a Google Apps Script library, with a static redirect URL?

I can't figure out how to make a shared Google Apps Script library, that uses OAuth 2.0. The problem is that the usercallback redirect URL changes, every time I use the library in a different script. However, that means I'd need to add a new app and…
jon_wu
  • 1,113
  • 11
  • 26
0
votes
1 answer

Can I use asana API to invite team member via out web app?

Can I use asana API to invite team member via out web app? For example, if I have users email, is it possible to use your API and create a tool that can invite this user to asana?
Klemen
  • 2,144
  • 2
  • 23
  • 31
0
votes
1 answer

Asana project statuses : creating web summary

My goal is to query Asana for project statuses (posts within the 'Progress' tab) and display them on a webpage. The intention is to give some visibility to those who can't go into Asana's UI and see the information there. Here's the thing though. …
TWZ
  • 1
  • 1
0
votes
1 answer

Create Webhook to tracking change of Asana Task

Now I'm trying to set up a webhook in Asana to send me event updates for a particular task on my Asana Project. I am pretty novice so keep that in mind when reading and answering, thanks. This also my first post on here so be easy on me. Here's my…
hephi808
  • 58
  • 7
0
votes
2 answers

Updating a custom field using ASANA Python API

I'm trying to update the values of custom fields in my Asana list. I'm using the Official Python client library for the Asana API v1. My code currently looks like this; project = "Example Project" keyword = "Example Task" print "Logging into…
KSmith
  • 3
  • 3
0
votes
1 answer

Website contact form to Asana Api

I am interested to allow my website to send a webform data to an asana project, its for collecting responses from potential clients. I am unsure the best way to do this, since by using the form, I do not want that the user is required to login, or…
Christopher Thomas
  • 4,424
  • 4
  • 34
  • 49
0
votes
1 answer

Asana api to get content from inbox

I want to get updates from asana inbox directly using asana api. Is there any way this can be done using api as i am unable to find anything in api documentation. If there is anything that i might have missed in api please point me to that.
shivams
  • 2,597
  • 6
  • 25
  • 47
0
votes
2 answers

Can't delete cookie with Win32 InternetSetCookie function

I have a cookie created from logging into Asana using OAuth in my desktop app (C#, using the WebBrowser control). It's stored in C:\Users\elega\AppData\Local\Microsoft\Windows\INetCache, named "cookie:elega@app.asana.com/". I want to delete it so…
Eric Legault
  • 5,706
  • 2
  • 22
  • 38