Right now I can read “Time tracking” column values with logs history by API. However, I didn’t find a way to add a manual session using API.
I’ve tried the following query, but after that, the value in my tracking column becomes empty (if I click on the column, my sessions will be visible in a separate popup)
mutation {
change_multiple_column_values(
item_id: 1571912532
board_id: 1562062178
column_values: "{\\"time_tracking__1\\" : {\\"running\\":\\"false\\",\\"duration\\":3600,\\"started_at\\":\\"2024-10-30T13:25:00Z\\", \\"history\\" : r{\\"started_at\\": \\"2024-10-30T11:12:00+00:00\\",\\"ended_at\\": \\"2024-10-30T12:12:00+00:00\\",\\"started_user_id\\": \\"60730163\\"}]}}"
) {
id
}
}
Is there any way to add session to “Time tracking” column using API?