AddContactToGroup
Associate the contact (if it is not already present) to a group
Stored Procedures Specific Information
Process of adding contact to group
Act! CRM allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns can typically be used with only = comparision. The available columns for AddContactToGroup are ContactId and GroupId. For example:
EXEC AddContactToGroup ContactId = '123456', GroupId = '567890'
Input
| Name | Type | Description |
| GroupId | String | The unique identifier (id) for a given group. |
| ContactId | String | The unique identifier (id) for a given contact that is associated with a group. |
Result Set Columns
| Name | Type | Description |
| Status | String | Stored Procedure Execution Status |