Hello All,
I’m seeking assistance with extracting time-tracking data at the board or item levels, including user details. Is it possible to achieve this through API calls? In simpler terms, I aim to create a tracker-export report via API.
Could you please suggest a method for exporting the data?.
I have tried below queries bit no luck.
query {
boards (ids: 1234567890) {
items_page (query_params: {rules: [{column_id: “timeline”, compare_value:“THIS_WEEK” , compare_attribute: “START_DATE”, operator:greater_than_or_equals}]}) {
items {
id
}
}
}
}
Method 2:
query {
boards (ids: 1234567890) {
items_page (query_params: {rules: [{column_id: “time_tracking”, compare_value: [2], operator:any_of}]}) {
items {
id
name
}
}
}
}
Thank you!