Skip to content

Commit 2ba7c83

Browse files
committed
Fixes for batch 7.4
1 parent 8f25616 commit 2ba7c83

File tree

4 files changed

+31
-30
lines changed

4 files changed

+31
-30
lines changed

src/connections/destinations/catalog/freshsales-suite-crm/index.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can use identify to create a contact when a website visitor fills a webform.
3636

3737
userId is a mandatory field which is used to identify the contact in Freshsales. If your user identifier is not email, then email has to be a part of traits.
3838

39-
```json=
39+
```json
4040
{
4141
"userId": "97980cfea0067",
4242
"type": "identify",
@@ -78,7 +78,7 @@ Custom fields won't automatically create. You have to create them in Freshsales
7878

7979
You can also update Accounts and Deals associated with a contact in Freshsales. The company and deal objects in the identify payload correspond to the Accounts and Deals objects in Freshsales. When you use the identify method to create a contact, it's possible to also create the corresponding Account and Deal and Freshsales. To do this, pass the company or the deal objects within traits in the identify call.
8080

81-
```json=
81+
```json
8282
{
8383
"userId" : "97980cfea0067",
8484
"type": "identify",
@@ -101,7 +101,7 @@ You can also update Accounts and Deals associated with a contact in Freshsales.
101101

102102
You can track activities of your website visitors. If a user is subscribing to a newsletter and you want to track it, use the track method.
103103

104-
```json=
104+
```json
105105
{
106106
"userId" : "john.doe@example.com",
107107
"event": "Email Bounced",
@@ -121,15 +121,16 @@ Segment standardized a series of reserved event names that have special semantic
121121

122122
If you want to track users visiting your sites, you can use the page method. When you call a page event, Segment sends a pageview to Freshsales. You can send extra data parameters within properties in the event payload. [See the reserved properties for more details](/docs/connections/spec/page/#properties).
123123

124-
```json=
124+
```json
125125
{
126-
"userId" : "john.doe@example.com",
126+
"userId": "john.doe@example.com",
127127
"name": "Page view",
128-
type”: ”page”,
129-
"properties" : {
128+
"type": "page",
129+
"properties": {
130130
"title": "Welcome to pricing page | Example.com",
131-
"url" : "http://example.com/pricing"
131+
"url": "http://example.com/pricing"
132132
}
133+
}
133134
```
134135

135136
## FAQs

src/connections/destinations/catalog/ibm-ubx/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ mappings may apply:
8282
<tr>
8383
<td>`name`</td>
8484
<td>`siteID`</td>
85-
<tr>
85+
</tr>
8686
</table>
8787

8888
_**Note:** As with `track` events, all properties sent by the user that aren't

src/connections/sources/catalog/cloud-apps/vero/index.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,26 +63,26 @@ Collections are the groupings of data we pull from your Source. In your warehous
6363
<td>Event</td>
6464
<td>Recipient has opened the HTML message. You need to enable Open Tracking for getting this type of event</td>
6565
</tr>
66-
<tr>
67-
<td>Email Link Clicked</td>
68-
<td>Event</td>
69-
<td>Recipient clicked on a link within the message. You need to enable Click Tracking for getting this type of event</td>
70-
</tr>
71-
<tr>
72-
<td>Email Unsubscribed</td>
73-
<td>Event</td>
74-
<td>Recipient clicked on message's subscription management link</td>
75-
</tr>
76-
<tr>
77-
<td>Email Bounced</td>
78-
<td>Event</td>
79-
<td>Receiving server could not or would not accept message</td>
80-
</tr>
81-
<tr>
82-
<td>Email Marked as Spam</td>
83-
<td>Event</td>
84-
<td>Recipient marked message as spam</td>
85-
</tr>
66+
<tr>
67+
<td>Email Link Clicked</td>
68+
<td>Event</td>
69+
<td>Recipient clicked on a link within the message. You need to enable Click Tracking for getting this type of event</td>
70+
</tr>
71+
<tr>
72+
<td>Email Unsubscribed</td>
73+
<td>Event</td>
74+
<td>Recipient clicked on message's subscription management link</td>
75+
</tr>
76+
<tr>
77+
<td>Email Bounced</td>
78+
<td>Event</td>
79+
<td>Receiving server could not or would not accept message</td>
80+
</tr>
81+
<tr>
82+
<td>Email Marked as Spam</td>
83+
<td>Event</td>
84+
<td>Recipient marked message as spam</td>
85+
</tr>
8686
</table>
8787

8888
<!-- Example: To query the Email Delivered table, you'd write a query like this:

src/connections/spec/ecommerce/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The ecommerce category includes the following semantic events:
4242

4343
Category pages are a staple of Ecommerce. They let the user browse all of the products in a specific category. You'll want to track all of your product category pages so you can quickly see which categories are most popular.
4444

45-
To do that, you'll want to record a specially recognized event called `Viewed Product Category` using a `track call. This event fires when a visitor views a product category. That view might happen on a page, screen, or modal.
45+
To do that, you'll want to record a specially recognized event called `Viewed Product Category` using a `track call`. This event fires when a visitor views a product category. That view might happen on a page, screen, or modal.
4646

4747
### Properties
4848

0 commit comments

Comments
 (0)