Hi All,
I have a problem regarding an asana project.
We will create a List of our Asana Tasks from a specified project that contains the following informations:
TaskId
TaskName
ProjectId (of the actual project)
ProjectName (of the actual project)
SectionID (of the acutal project)
SectionName (of the actual project)
My problem is, that a task can be a membership of several projects and sections. But we only want the ID and name of the project and Section of the specified project.
Here is an example. Our task is related to different Projects and Sections:
"memberships": [
{
"project": {
"gid": "1202229622425000",
"name": "Great Project",
"resource_type": "project"
},
"section": {
"gid": "1208966331440000",
"name": "Section 1",
"resource_type": "section"
}
},
{
"project": {
"gid": "1206247714259000",
"name": "Small Project",
"resource_type": "project"
},
"section": {
"gid": "1206612663165458",
"name": "Section 2",
"resource_type": "section"
}
}
],
If I am working on the “Great Project” how can I achieve to receive the informations from the first array and not from the second one.
Otherwise, if i work on the “small project” how can I achieve to receive the informations form the second array?
Can someone help? I need the project.gid and section.gid
Thanks a lot and best regards,
Jane