PersonsActivitiesAttendees
Get Details of Persons Activities Attendees.
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 本製品.
- PersonId supports the '=' operator.
- Done supports the '=' operator.
- Exclude supports the '=,IN' operators.
For example, the following query is processed server side:
SELECT * FROM PersonsActivitiesAttendees WHERE PersonId = 113 SELECT * FROM PersonsActivitiesAttendees WHERE PersonId = 113 AND Done = 0 SELECT * FROM PersonsActivitiesAttendees WHERE PersonId = 113 AND Exclude IN ('240', '241')
Columns
Name | Type | Description |
PersonId [KEY] | Integer | PersonId. |
EmailAddress | String | EmailAddress. |
IsOrganizer | Integer | IsOrganizer. |
Name | String | Name. |
Status | String | Status. |
UserId | String | UserId. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
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 |
Exclude | String | A comma-separated string of activity IDs to exclude from result. |