|
| 1 | +// This code sample get all tasks which have the specified value for a specific custom field > Loop through each item in the customfieldTasks object > Printout the customfieldId, customFieldValueId, taskId and the value of the custom field. |
| 2 | +// Params included: |
| 3 | +// - includeCompletedTasks=true |
| 4 | +// - includeCustomFields=true |
| 5 | +// - customField[customfieldId][any]=Approved,Needs attention (This sample data is linked to a dropdown custom field, any is an operator for filtering) |
| 6 | +// Endpoint documentation: https://apidocs.teamwork.com/docs/teamwork/v3/tasks/get-projects-api-v3-tasks-json |
| 7 | +const myHeaders = new Headers(); |
| 8 | +const userName = "email address or API KEY here"; |
| 9 | +const password = "password"; |
| 10 | +const siteName = "yourSiteName" |
| 11 | + |
| 12 | +let page = 1 |
| 13 | + |
| 14 | +myHeaders.append("Authorization", "Basic " + btoa(userName + ":" + password)); |
| 15 | + |
| 16 | +const requestOptions = { |
| 17 | + method: "GET", |
| 18 | + headers: myHeaders, |
| 19 | + redirect: "follow" |
| 20 | +}; |
| 21 | + |
| 22 | +async function fetchTime() { |
| 23 | + do { |
| 24 | + let tasksUrl = "https://" + siteName + ".teamwork.com/projects/api/v3/tasks.json?includeCompletedTasks=true&includeCustomFields=true&customField[4532][any]=Approved,Needs attention&page=" + page |
| 25 | + const response = await fetch(tasksUrl, requestOptions) |
| 26 | + |
| 27 | + let data = await response.json() |
| 28 | + |
| 29 | + var customfieldTasks = data["included"]["customfieldTasks"]; |
| 30 | + var hasMore = data["meta"]["page"]["hasMore"]; |
| 31 | + for (const key in customfieldTasks) { |
| 32 | + if (customfieldTasks.hasOwnProperty(key)) { |
| 33 | + const field = customfieldTasks[key]; |
| 34 | + if (field.value == "Needs attention") { |
| 35 | + console.log(`customfieldId: ${field.customfieldId}`); |
| 36 | + console.log(`customFieldValueId: ${field.id}`); |
| 37 | + console.log(`taskId: ${field.taskId}`) |
| 38 | + console.log(`value: ${field.value} \n`); |
| 39 | + } |
| 40 | + } |
| 41 | + } |
| 42 | + //console.log(page); |
| 43 | + page++ |
| 44 | + } while (hasMore); |
| 45 | + |
| 46 | +} |
| 47 | + |
| 48 | +fetchTime(); |
0 commit comments