AutomationService
A list of all methods in the AutomationService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
CustomTriggersTriggerByContactIdAsync | |
CustomTriggersTriggerBySocialSecurityNumberAsync | |
CustomTriggersTriggerByExternalContactIdAsync | |
CustomTriggersTriggerByContactTypeAndKeyAsync |
CustomTriggersTriggerByContactIdAsync
- HTTP Method:
POST
- Endpoint:
/api/v2/automation/customTriggers/{triggerId}/triggerByContactId/{contactId}
Parameters
Name | Type | Required | Description |
---|---|---|---|
input | object | ✅ | The request body. |
triggerId | string | ✅ | |
contactId | string | ✅ |
Return Type
object
Example Usage Code Snippet
using VoyadoEngage;
var client = new VoyadoEngageClient();
var response = await client.Automation.CustomTriggersTriggerByContactIdAsync(new object {}, "triggerId", "contactId");
Console.WriteLine(response);
CustomTriggersTriggerBySocialSecurityNumberAsync
- HTTP Method:
POST
- Endpoint:
/api/v2/automation/customTriggers/{triggerId}/triggerBySocialSecurityNumber/{ssn}
Parameters
Name | Type | Required | Description |
---|---|---|---|
input | object | ✅ | The request body. |
triggerId | string | ✅ | |
ssn | string | ✅ |
Return Type
object
Example Usage Code Snippet
using VoyadoEngage;
var client = new VoyadoEngageClient();
var response = await client.Automation.CustomTriggersTriggerBySocialSecurityNumberAsync(new object {}, "triggerId", "ssn");
Console.WriteLine(response);
CustomTriggersTriggerByExternalContactIdAsync
- HTTP Method:
POST
- Endpoint:
/api/v2/automation/customTriggers/{triggerId}/triggerByExternalContactId/{externalId}
Parameters
Name | Type | Required | Description |
---|---|---|---|
input | object | ✅ | The request body. |
triggerId | string | ✅ | |
externalId | string | ✅ |
Return Type
object
Example Usage Code Snippet
using VoyadoEngage;
var client = new VoyadoEngageClient();
var response = await client.Automation.CustomTriggersTriggerByExternalContactIdAsync(new object {}, "triggerId", "externalId");
Console.WriteLine(response);
CustomTriggersTriggerByContactTypeAndKeyAsync
- HTTP Method:
POST
- Endpoint:
/api/v2/automation/customTriggers/{triggerId}/triggerByContactTypeAndKey/{contactType}/{keyValue}
Parameters
Name | Type | Required | Description |
---|---|---|---|
input | object | ✅ | The request body. |
triggerId | string | ✅ | |
contactType | string | ✅ | |
keyValue | string | ✅ |
Return Type
object
Example Usage Code Snippet
using VoyadoEngage;
var client = new VoyadoEngageClient();
var response = await client.Automation.CustomTriggersTriggerByContactTypeAndKeyAsync(new object {}, "triggerId", "contactType", "keyValue");
Console.WriteLine(response);
Build Your Own SDKs with liblab
Build developer friendly SDKs in minutes from your APIs