I want to create a task inside a section of a project.
Therefore I need a few things:
- A way to get the id of the section
- I can’t find it on the UI (projectIds and taskIds for example can be seen in the URL)
- There is an endpoint to get sections of a project and the java lib example seems to support this see https://developers.asana.com/docs/get-sections-in-a-project
- Unfortunately my
com.asana.Client
doesn’t seem to have asections
member see [1](using the latest java release
10.1
)
- Unfortunately my
- A way to assign a task to a section
- Creating a task in a section as described here
developers.asana.com/docs/add-task-to-section
has the same problem for me - I don’t seem to have thesections
member in theClient
…
- Creating a task in a section as described here
Checking the github source code for the java client - it also doesn’t have a section
member see https://github.com/Asana/java-asana/blob/master/src/main/java/com/asana/Client.java
There is a ProjectMemberships
member but this only gives you read options as far as I can tell.
[1]
Any help would be very much appreciated,
Best Regards
Ronald Findling