0

I have tried alot but didn't found any parameter to call the only data I need from Asana API .

I need data in date range.

I have to fetch all the data and than need to filter according my need.

This is very painful.

arwaz shaikh
  • 1,341
  • 2
  • 9
  • 15

1 Answers1

0

Add your need option fields

# Request
curl -u <api_key>: "https://app.asana.com/api/1.0/tasks/1224?opt_fields=name,notes"

# Response
HTTP/1.1 200
{
  "data": {
    "name": "Make a list",
    "notes": "Check it twice!",
    "id": 1224
  }
}
SarDau Mort
  • 187
  • 4