Skip to content

Commit 99e5736

Browse files
authored
Create Loop through latest activity (V3 endpoint).js
1 parent dec7589 commit 99e5736

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// This code sample is an example of looping through the latest activity data. This is the information you will see on the home > activity page on your site.
2+
// Filters set to capture all activity
3+
// Endpoint Url: https://" + siteName + "/projects/api/v3/latestactivity.json //ie: example.teamwork.com
4+
const myHeaders = new Headers();
5+
const userName = "email address or API KEY here";
6+
const password = "password";
7+
const siteName = "yourSiteName"
8+
9+
let loop = true
10+
let page = 1
11+
let cursor = ""
12+
13+
myHeaders.append("Authorization", "Basic " + btoa(userName + ":" + password));
14+
15+
const requestOptions = {
16+
method: "GET",
17+
headers: myHeaders,
18+
redirect: "follow"
19+
};
20+
//&startDate=2024-06-01&endDate=2024-06-30
21+
// adding &endDate=2024-06-30 starts the search from that date
22+
async function fetchPosts() {
23+
do {
24+
let latestActivityUrl = "https://" + siteName + "/projects/api/v3/latestactivity.json?skipCounts=true&activityTypes=&range=allTime&hideObservedProjects=false&include=users,projects,companies,tasks,reactions,notebooks,links&onlyProjectsWithExplicitMembership=false&onlyStarredProjects=false&projectIds=&userIds=&endDate=2024-06-07&pageSize=50&limit=50&page=" + page
25+
const response = await fetch(latestActivityUrl, requestOptions)
26+
let data = await response.json()
27+
console.log(data)
28+
if (page == 1) {
29+
loop = true;
30+
} else {
31+
loop = data.meta.page.hasMore;
32+
}
33+
page++;
34+
} while (loop);
35+
}
36+
37+
fetchPosts();

0 commit comments

Comments
 (0)