let query = `query {
timeline(id: ${itemId}) {
timeline_items_page {
cursor
timeline_items {
created_at
type
title
content
custom_activity_id
user {
id
name
}
id
item {
name
}
}
}
}
}`;
Seems like for essential activities like Email and Note, they are being returned as the correct type. However, seems like call summary is simply marked as activity. Is this intended or is it a known bug? Thanks in advance.
I actually do get the “call” type if I call the API in the original post. Now I’m trying to extract the “meeting” type from timeline if possible.
Notes and emails are not considered activities and should return with the types “email” and “note”, while “Meeting”, “Call Summary” and all custom activities should return the type “activity”. However, they also have sub type of “Meeting”, “Call Summary” and “Custom”.
Would you be able to please share with us the exact query he’s using and a screenshot of the response?