Use api to get change time for item name from activity log

It seems that the API doesn’t support item name in activity log, it is recorded on the board but not returned in the API call:

{
boards(ids: 8967422026) {
activity_logs(
from: “2020-01-01T00:00:00Z”
to: “2026-11-03T15:46:10.391501Z”
column_ids: [“name”]
item_ids: [18073016056]
limit: 1
) {
id
event
data
created_at
user_id

}

}
}


Hello,
That’s correct; the API’s activity_logs query does not directly return the item name as a separate field. While item name changes are recorded and visible in the board’s activity log interface, the API response for activity_logs primarily includes id, event, data, created_at, and user_id. The item name itself is usually retrieved via the separate items query using the item’s ID, which you can get from the item_ids argument you used in your query, or in some cases, it may be found within the unstructured data field of certain log events.

Best regards,
Jean Tores
HCTRA

Hi,
Thank you for your response,
I’m looking for a way to get the last update time of the item’s name.
Is that available anywhere?

tnx,
Reuven kapiloff