ActivitiesAttendees
Get all Activities attendees assigned to a particular User
Select
The 本製品 will use the Pipedrive API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the 本製品.
- ActivitiesId supports the '=' operator.
- Done supports the '=' operator.
- Type supports the '=, IN' operators.
- UserId supports the '=' operator.
- FilterId supports the '=' operator.
- StartDate supports the '=' operator.
- EndDate supports the '=' operator.
For example, the following query is processed server side:
SELECT * FROM ActivitiesAttendees WHERE ActivitiesId = 246 SELECT * FROM ActivitiesAttendees WHERE Done = 0 SELECT * FROM ActivitiesAttendees WHERE Type IN ('deadline', 'call') SELECT * FROM ActivitiesAttendees WHERE EndDate = '2021-12-24' SELECT * FROM ActivitiesAttendees WHERE UserId = 8230170
Columns
Name | Type | Description |
ActivitiesId [KEY] | Integer | Activities ID. |
EmailAddress | String | EmailAddress. |
IsOrganizer | Integer | IsOrganizer. |
Name | String | Name. |
PersonId | Integer | PersonId. |
Status | String | Status. |
UserId | String | UserId. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
Type | String | Type of the Activity This is in correlation with the key_string parameter of ActivityTypes When value for type is not set, it will be given a default value Call.
デフォルト値はCallです。 |
Done | Boolean | Whether the Activity is done or not. 0 = Not done 1 = Done. If omitted, returns both Done and Not done activities.
使用できる値は次のとおりです。0, 1 |
FilterId | Integer | The ID of the Filter to use. |
StartDate | String | Use the Activity due date where you wish to begin fetching Activities from Insert due date in YYYY-MM-DD format. |
EndDate | String | Use the Activity due date where you wish to stop fetching Activities from Insert due date in YYYY-MM-DD format. |