Activities
Marketo の組織のカスタムアクティビティをクエリします。
Table Specific Information
SELECT
The connector uses the Marketo API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client-side within the connector.
- ActivityDate supports the '<,>,>=,<='
- ActivityTypeId supports the '=,IN'.
- LeadId supports the '=,IN'.
- ListId supports the '='
SELECT * FROM Activities WHERE activitydate > '2022-09-3' AND activitydate < '2022-09-5' SELECT * FROM Activities WHERE activitytypeid = 11 SELECT * FROM Activities WHERE activitytypeid IN (11, 12) AND leadid IN (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15) SELECT * FROM Activities WHERE ActivityTypeId = '1' AND LeadId = '123'
Columns
Name | Type | ReadOnly | Filterable | Description |
ActivityId [KEY] | Integer | True |
アクティビティの一意のId。 | |
LeadId | Integer | True | True |
アクティビティに関連のあるリードの一意のId。 |
ActivityDate | Datetime | True | True |
リードがリストに追加された日時。特定の日付以降のすべてのアクティビティを取得するために開始日時を指定するフィルタとして使用できます。 |
PrimaryAttribute | String | True | True |
プライマリフィールドのId。 |
PrimaryAttributeValue | String | True |
プライマリフィールドの値。 |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似列フィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
ListId | Integer |
特定のリストに含まれるすべてのリードのアクティビティを取得するために使われるList Id。 |
Returns a list of activities from after a datetime given by the nextPageToken parameter.
Table Specific Information
SELECT
The connector uses the Marketo API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client-side within the connector.
- ActivityDate supports the '<,>,>=,<='
- ActivityTypeId supports the '=,IN'.
- LeadId supports the '=,IN'.
- ListId supports the '='
SELECT * FROM Activities WHERE activitydate > '2022-09-3' AND activitydate < '2022-09-5' SELECT * FROM Activities WHERE activitytypeid = 11 SELECT * FROM Activities WHERE activitytypeid IN (11, 12) AND leadid IN (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15) SELECT * FROM Activities WHERE ActivityTypeId = '1' AND LeadId = '123'
Columns
Name | Type | Filterable | Description |
Id [KEY] | String | True | Unique id of the activity. |
ActivityDate | Datetime | True | Datetime of the activity. |
ActivityTypeId | Integer | True | Id of the activity type. |
LeadId | Integer | True | Id of the lead associated to the activity. |
MarketoGUID | String | Unique id of the activity (128 character string). | |
PrimaryAttributeValue | String | Value of the primary attribute. | |
PrimaryAttributeValueId | Integer | Id of the primary attribute field. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似列フィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
ListId | String | Id of a static list. If set, will only return activities of members of this static list. |