SSIS Components for Monday

Build 25.0.9434

TimelineItems

Get metadata about items in the Email and Activities timeline.

Table-Specific Information

SELECT

The component uses the Monday API to process some of the filters. The component processes other filters client-side within the component.

  • Id supports the '=','IN' comparison operators.
  • ItemId supports the '=','IN' comparison operators.
For example, the following query is processed server side:
SELECT * FROM TimelineItems WHERE Id ='2b748808-9311-4f76-80de-49baac5609e1'
SELECT * FROM TimelineItems WHERE ItemId ='9016504235'

INSERT

The following inputs can be used in INSERT statements:

Title, CustomActivityId, ItemId, Summary, Content, Location, Phone, Url, Timestamp, TimeRangeStartTimestamp, TimeRangeEndTimestamp

INSERT INTO TimelineItems(ItemId, CustomActivityId, Location, Title, Summary, Content, Timestamp, TimeRangeStartTimestamp, TimeRangeEndTimestamp, phone, url) VALUES ( '7832826517', '8baadd0b-5b64-4ecb-a035-1f5824507f98', 'X', 'Migrated Timeline', 'Works summary', 'Test', '2024-06-06T18:00:30Z', '2024-04-06T15:00:30Z', '2024-05-06T19:00:30Z', '1234-5678', 'https://www.test.com');

DELETE

You can delete entries by specifying the Id.

DELETE FROM TimelineItems WHERE Id='2b748808-9311-4f76-80de-49baac5609e1'

Columns

Name Type ReadOnly References Description
Id [KEY] String False

The timeline item's unique identifier.

Type String False

The timeline item's type.

Title String False

The title of the timeline item.

CustomActivityId String False

The external ID of the custom activity of the timeline item.

Content String False

The item content.

Timestamp Datetime False

The creation time of the event.

UserId String False

The unique identifier of the user who created the timeline item.

UserName String False

The name of the user who created the timeline item.

ItemId String False

The unique identifier of the item that the timeline item is on.

BoardId String False

The unique identifier of the board that the timeline item is on.

BoardName String False

The name of the board that the timeline item is on.

BoardWorkspaceId String False

The unique identifier of the workspace that the timeline item is on.

BoardWorkspaceName String False

The name of the workspace that the timeline item is on.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Summary String

The item summary.

Location String

Location field value.

Phone String

Phone number field value.

Url String

URL field value.

TimeRangeStartTimestamp Datetime

The time range's start.

TimeRangeEndTimestamp Datetime

The time range's end.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9434