Time Tracking via API

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!

Hello,

It appears that Method 2 is the example from the API documentation for the time_tracking column. This should be the right format for the query. What does the result look like for your specific board_id and column_id?

Best,
Joseph

1 Like