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 project is created but ajax readystate 0

I have a php application that accesses Asana API. I am able to create a project in Asana. However, the ajax call to the API class is returning a readystate=0. While troubleshooting in firebug I also noticed that the network console has a 302,…
0
votes
1 answer

Creating columns and moving cards between them with the API

is it possible with the current API to create columns (the new "Boards" feature), create cards in a specific column, or move cards between columns? thanks
djug
  • 550
  • 5
  • 8
0
votes
1 answer

is Asana API sending too many events?

I’m working on a new app using asana API, after I create a webhook on a project, I’d receive too many events for even the simplest tasks lets take a look at an example: I have a project, with a webhook receiving all updates that occur on it. I…
djug
  • 550
  • 5
  • 8
0
votes
2 answers

How can I create task in asana from setting asana to forward emails back

I'm using Asana for forwarding email from other website that I post email for any comments, but the method was is any one can send email to *elp@***.net and as I set asana to forward this email to asana to create new task
0
votes
1 answer

Can I determine which tasks in collection have subtask without additional API queries?

I'm trying to deep-copy a task with nested subtasks using the API. Currently, I'm querying the subtasks endpoint for each task in my tree. Is there any way to know if a task is going to have subtasks without having to hit the subtasks endpoint for…
MrChrisRodriguez
  • 493
  • 6
  • 12
0
votes
1 answer

Can't deserialize Asana User data into C# class

I'm trying to deserialize the data I'm getting from the users/me call in the Asana API as per below, but the object is returning null for all properties in the jsonResponse var. The data is there - I can see it if I read it as pure text. I've also…
Eric Legault
  • 5,706
  • 2
  • 22
  • 38
0
votes
0 answers

How to get the story of reopened task in asana with the webhook notification?

I am getting notified via webhooks when the task is reopened by the user, Where in webhooks i receive a json payload…
vasanth vasu
  • 401
  • 5
  • 13
0
votes
1 answer

Asana API methods for changing user's Asana configuration

For each of our users (and new users we onboard) we'd like to: automatically save a pre-defined custom search automate adding certain projects to "My Dashboard" In my research, the APIs appear to primarily revolve around leveraging Asana as a data…
MrChrisRodriguez
  • 493
  • 6
  • 12
0
votes
1 answer

How to enable Events stream in Asana using javascript

I am trying to listen to changes to a resource. I was able to run events.stream once returning an object. How can I make it to be continuously listening? Or is it possible for now?
Jay
  • 1
  • 2
0
votes
1 answer

How can I access "waiting on" fields in the Asana API?

Asana tasks can be marked as "waiting on" other tasks. I'd like to access this data through the API, but it's either not available or undocumented. The set of fields returned in an API response can be customised using the opt_fields parameter. I've…
afternoon
  • 1,285
  • 16
  • 25
0
votes
1 answer

Asana - create tag API - can't find created tag

When I am creating a tag using API - Getting a - 201 Create - as expected Create Request: curl -X POST -H "Authorization: Bearer " -d 'name=tag1&workspace=42783899288073' "https://app.asana.com/api/1.0/tags" Response: { "data": { …
Amit G
  • 2,293
  • 3
  • 24
  • 44
0
votes
1 answer

Updating Task with C#

I'm trying to use C# to make API calls into our Asana project. I can "get" all of the tasks under a specific project with no issues. I can also create "post" a new task without any issues. I'm having difficulty re-purposing this code that was used…
fenix
  • 162
  • 10
0
votes
1 answer

Creating an Asana task using Perl

I am attempting to create a task in Asana using Perl. I am using the following modules: WWW::Curl::Simple JSON HTTP::Request Here is my code. my %data = ( "data" => { "workspace" => "##########", #$config->get('asana/workspace_id'), …
Will Reade
  • 23
  • 3
0
votes
1 answer

Asana Tasks Not Showing Created_At Date?

I'm using the asana gem and trying to get all created_at dates for all tasks in all my projects. I can get names and ids to show, but not other fields. For example, created_at returns a blank when printed to the screen. It would seem like every…
0
votes
1 answer

Adding attachments to tasks using php asana library results in empty files in task

I am trying to add attachments to a task using the php asana library (https://github.com/Asana/php-asana). I am successful in 'adding' the files, but when I open them in the task they are completely empty or corrupt. I have tried .png, .doc, and…
farse311
  • 53
  • 4