-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-task-details.json
More file actions
81 lines (81 loc) · 2.2 KB
/
test-task-details.json
File metadata and controls
81 lines (81 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "1.0",
"name": "Project Tasks to Individual Task Details",
"description": "Gets tasks from a project, then iterates to get details for each individual task",
"sequence": [
{
"method": "GET",
"path": "/projects/{project_gid}/tasks",
"summary": "Get tasks from a project",
"description": "Returns tasks from a specific project",
"tags": ["Tasks"],
"parameters": {
"path": {
"project_gid": "YOUR_PROJECT_GID_HERE"
},
"query": {
"opt_fields": "gid,name,completed,assignee.name",
"limit": "10"
},
"body": null
},
"variableMappings": {}
},
{
"method": "GET",
"path": "/tasks/{task_gid}",
"summary": "Get details for each task (with iteration)",
"description": "This step iterates through each task from step 1 and gets detailed information",
"tags": ["Tasks"],
"parameters": {
"path": {
"task_gid": "{{item.gid}}"
},
"query": {
"opt_fields": "gid,name,completed,assignee,due_date,notes,projects.name,created_at,modified_at"
},
"body": null
},
"variableMappings": {},
"iteration": {
"enabled": true,
"sourceField": "step0.data",
"iterationVariable": "item",
"unifyResults": true
}
}
],
"dataTransformations": {
"fieldMappings": [
{
"sourceField": "gid",
"targetField": "task_id",
"isUnified": false
},
{
"sourceField": "name",
"targetField": "task_name",
"isUnified": false
},
{
"sourceField": "completed",
"targetField": "is_completed",
"isUnified": false
},
{
"sourceField": "assignee.name",
"targetField": "assignee_name",
"isUnified": false
}
],
"unifiedColumns": [
{
"name": "task_summary",
"formatTemplate": "{name} - {completed ? 'Completed' : 'Pending'} - {assignee?.name || 'Unassigned'}",
"sourceFields": ["name", "completed", "assignee.name"]
}
]
},
"timestamp": "2025-11-12T00:00:00.000Z",
"baseUrl": "https://app.asana.com/api/1.0"
}