Hello,
I’ve been working on trying to pull hours from the Time Tracking column that I’ve added to a board via the Activity Log API. I added some hours yesterday and verified that it showed up in the API call. Today, however, those activities are not in the activity log and - for context - the query to pull the maximum number of activities across all the boards in our environment. Also, I’m using API version 2024-04. Is this an issue anyone else has experienced or a known bug?
Here’s the python code/query I was working with:
import requests
import json
import pandas as pd
from datetime import datetime, timedelta
apiKey = myapikey
apiUrl = “https://api.monday.com/v2”
headers = {“Authorization”: apiKey, “API_Version”: ‘2024-04’}
activity_log_query = ‘{ boards (limit: 1000) {id activity_logs {data entity event id user_id created_at} }}’
activity_log_data = {‘query’: activity_log_query}
activity_log_request = requests.post(url=apiUrl, json=activity_log_data, headers=headers)
activity_log = activity_log_request.json()