OrganizationsDealsPersonEmail
get details of deals person email.
Select
The add-in 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 add-in.
- OrgId supports the '=' operator.
- Status supports the '=' operator.
- OnlyPrimaryAssociation supports the '=,IN' operators.
For example, the following query is processed server side:
SELECT * FROM OrganizationsDealsPersonEmail WHERE OrgId = 246 SELECT * FROM OrganizationsDealsPersonEmail WHERE OrgId = 246 AND Status = 'open' SELECT * FROM OrganizationsDealsPersonEmail WHERE OrgId = 246 AND OnlyPrimaryAssociation = 1
Columns
| Name | Type | References | Description |
| OrgId [KEY] | Integer | Org Id. | |
| Label | String | Label. | |
| Primary | Boolean | Primary. | |
| Value | String | Value. |
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 | |
| Status | String | Only fetch deals with specific status.
The allowed values are open, won, lost, deleted, all_not_deleted. The default value is all_not_deleted. | |
| OnlyPrimaryAssociation | Integer | If set, only deals that are directly associated to the organization are fetched.
The allowed values are 0, 1. |