ActivitiesAttendees
Returns the list of attendees for each activity, including their email address, name, organizer status, and attendance status.
View-Specific Information
SELECT
The provider uses 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 provider.
| Column | Supported Operators |
| ActivitiesId | = |
| FilterId | = |
| OwnerId | = |
| DealId | = |
| LeadId | = |
| PersonId | = |
| OrgId | = |
| Done | = |
For example, the following queries are processed server-side:
SELECT * FROM ActivitiesAttendees WHERE ActivitiesId = 246
SELECT * FROM ActivitiesAttendees WHERE Done = false
SELECT * FROM ActivitiesAttendees WHERE PersonId = 1
SELECT * FROM ActivitiesAttendees WHERE DealId = 2
SELECT * FROM ActivitiesAttendees WHERE OrgId = 1
Columns
| Name | Type | References | Description |
| ActivitiesId [KEY] | Integer |
Activities.Id | The unique identifier of the parent activity. |
| EmailAddress [KEY] | String | The email address of the attendee. | |
| IsOrganizer | Boolean | Indicates whether the attendee is the organizer of the activity. | |
| Name | String | The full name of the attendee. | |
| AttendeePersonId | Integer | The unique identifier of the Pipedrive person record associated with the attendee. | |
| Status | String | The attendance status of the attendee, such as accepted, declined, or tentative. | |
| UserId | Integer | The unique identifier of the Pipedrive user account associated with the attendee. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.
| Name | Type | Description | |
| FilterId | Integer | The ID of the Filter to use. | |
| OwnerId | Integer | The id of the owner of the activity. | |
| DealId | Integer | The id of the deal corresponding to the activity | |
| LeadId | String | The Id of the lead corresponding to the activity. | |
| PersonId | Integer | The id of the person corresponding to the activity. | |
| OrgId | Integer | The id of the organisation corresponding to the activity. | |
| Done | Boolean | Whether the Activity is done or not. If omitted, returns both Done and Not done activities. |