Yes, it is possible to retrieve the item_view ID or related data through the Monday.com API, depending on the specific details and your use case. Here’s how you can approach it:
The item_view ID is not explicitly documented in Monday.com’s API as a separate entity, but you can often work around this by fetching associated views or timeline data for the item.
To retrieve available views on a board, you can query the board’s data:
graphql
CopyEdit
query {
boards(ids: 8140312713) {
views {
id
name
type
}
}
}
This fetches all views associated with the board, including timeline or activity views. However, it doesn’t directly link to the item_view ID in the URL.
Step 2: Fetch Timeline Data
If you are working with timeline data, you can use the items query to get the relevant timeline details:
graphql
CopyEdit
query {
items(ids: 8140355862) {
column_values {
id
value
text
}
}
}
Check for the timeline column and its value. It might help you identify relevant information linked to timelineItemId.
Step 3: Identify Item View ID
Unfortunately, the item_view ID (174255419) used in the URL is not directly accessible through the Monday.com API based on current documentation. If you need it specifically:
Confirm if this ID is tied to a board view or specific item property by reviewing available API fields.
Contact Monday.com’s support for clarification if this ID is undocumented or hidden.
Suggested Solution
To work with timeline and activity data:
Retrieve the item and its timeline details using the items query.
Use views from the board query to fetch metadata about available views.
If this has helped let me know with a like or hopefully others will also jump in!