You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/regal-voice/index.md
+29-27Lines changed: 29 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,17 +59,42 @@ analytics.identify({
59
59
});
60
60
```
61
61
62
-
Segment sends Identify calls to Regal Voice as an identify event. If an identify event contains a phone, Regal Voice will create a contact in your Audience.
62
+
Segment sends Identify calls to Regal Voice as an identify event.
63
63
64
+
If an identify event contains a phone, Regal Voice will create a contact in your Audience.
65
+
66
+
## Track
67
+
68
+
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does.
69
+
70
+
Segment recommends calling `track` on any user or system event that you may want Regal Voice to be able to use for lead scoring or as triggers or conditions when sending voice and sms campaigns.
71
+
72
+
Segment sends `track` calls to Regal Voice as a track event. Pass all attributes relevant to your use case into the `properties` object.
73
+
74
+
Regal Voice communications can be triggered proactively to a user based on their activity or inactivity - in order to nudge them through your funnel.
75
+
76
+
An example for a financial services company might be that you want to tigger an outbound call to a user for whom a 'Loan Application Approved' event has been received, but not a 'Loan Signed' event (with some parameter around timing).
77
+
78
+
In that case, an example `track` call for the 'Loan Application Approved' event would look like:
79
+
80
+
```js
81
+
analytics.track('Loan Application Approved', {
82
+
loanType:'Personal loan',
83
+
amount:30000
84
+
currency:'USD'
85
+
term:12
86
+
})
87
+
```
64
88
65
89
## Collecting OptIn
66
90
67
91
In order to trigger outbound calls or sms messages from Regal Voice, you must collect the user’s explicit opt-in for those channels along with the user’s phone number.
68
-
There are 2 options for how you can let Regal Voice know a user has opted in.
69
92
70
-
Anytime you collect opt-in for sms or voice calls, you can trigger a track event after a user opts in and let the Regal Voice team know what track event is synonymous with opt-in collected (there is no required format for this event). The product will then automatically subscribe users who perform that event. (Note: for Regal Voice to subscribe a user, there must already be a phone provided for that user.)
93
+
There are 2 options for how you can let Regal Voice know a user has opted in;
94
+
95
+
1. Anytime you collect opt-in for sms or voice calls, you can trigger a track event after a user opts in and let the Regal Voice team know what track event is synonymous with opt-in collected (there is no required format for this event). The product will then automatically subscribe users who perform that event. (Note: for Regal Voice to subscribe a user, there must already be a phone provided for that user.)
71
96
72
-
Alternatively, anytime you collect opt-in for sms or voice calls, you can use an `identify` call to pass that opt-in information to Regal Voice by adding an optIn object.
97
+
2.Alternatively, anytime you collect opt-in for sms or voice calls, you can use an `identify` call to pass that opt-in information to Regal Voice by adding an optIn object.
73
98
74
99
Below is an example of what an `identify` call would look like for a user who opted into multiple channels (sms and voice calls) at once:
75
100
@@ -103,27 +128,4 @@ For the identify method, the `ip` field is required if you are opting in users s
103
128
104
129
Make sure to include `timestamp` with the exact time the user opted in. Since traits are [cached](/docs/connections/sources/catalog/libraries/website/javascript/identity/#clearing-traits) and sent with subsequent Identify calls, Regal Voice ignores opt-ins that do not have a `timestamp` date.
105
130
106
-
107
-
## Track
108
-
109
-
If you aren't familiar with the Segment Spec, take a look at the [Track method documentation](/docs/connections/spec/track/) to learn about what it does.
110
-
111
-
Segment recommends calling `track` on any user or system event that you may want Regal Voice to be able to use for lead scoring or as triggers or conditions when sending voice and sms campaigns.
112
-
113
-
Segment sends `track` calls to Regal Voice as a track event. Pass all attributes relevant to your use case into the `properties` object.
114
-
115
-
Regal Voice communications can be triggered proactively to a user based on their activity or inactivity - in order to nudge them through your funnel.
116
-
117
-
An example for a financial services company might be that you want to tigger an outbound call to a user for whom a 'Loan Application Approved' event has been received, but not a 'Loan Signed' event (with some parameter around timing).
118
-
119
-
In that case, an example`track` call for the 'Loan Application Approved' event would look like:
0 commit comments