-
Notifications
You must be signed in to change notification settings - Fork 395
Remove <script> and more fixes #8036
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2dc36d0
Remove <script>
lopenchi ad5c8a6
Fix link
lopenchi e221e8f
Fixes for batch 7.4
lopenchi 8f1cda3
Merge remote-tracking branch 'upstream/develop' into develop
lopenchi 620ed3c
wording + casing tweaks
sade-wusi 5e8eab7
fix broken Kotlin link
pwseg 6729453
fix directional and awkward language
pwseg 05e2377
[netlify-build]
pwseg 77b17bd
docs: fix code fence on redshift docs(#8045)
Deflaimun e5c77f8
Merge remote-tracking branch 'upstream/develop' into develop
lopenchi f47ce19
Reset to main
lopenchi ef54a70
Update src/connections/spec/ecommerce/index.md
lopenchi 2d54b6d
page cleanup/ edits
sade-wusi b93d88f
wording + sentence casing for titles
sade-wusi a5033a9
cleanup + edits
sade-wusi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,7 +36,7 @@ You can use identify to create a contact when a website visitor fills a webform. | |
|
|
||
| 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. | ||
|
|
||
| ```json= | ||
| ```json | ||
| { | ||
| "userId": "97980cfea0067", | ||
| "type": "identify", | ||
|
|
@@ -78,7 +78,7 @@ Custom fields won't automatically create. You have to create them in Freshsales | |
|
|
||
| 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. | ||
|
|
||
| ```json= | ||
| ```json | ||
| { | ||
| "userId" : "97980cfea0067", | ||
| "type": "identify", | ||
|
|
@@ -101,7 +101,7 @@ You can also update Accounts and Deals associated with a contact in Freshsales. | |
|
|
||
| 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. | ||
|
|
||
| ```json= | ||
| ```json | ||
| { | ||
| "userId" : "[email protected]", | ||
| "event": "Email Bounced", | ||
|
|
@@ -121,15 +121,16 @@ Segment standardized a series of reserved event names that have special semantic | |
|
|
||
| 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). | ||
|
|
||
| ```json= | ||
| ```json | ||
| { | ||
| "userId" : "[email protected]", | ||
| "userId": "[email protected]", | ||
| "name": "Page view", | ||
| “type”: ”page”, | ||
| "properties" : { | ||
| "type": "page", | ||
| "properties": { | ||
| "title": "Welcome to pricing page | Example.com", | ||
| "url" : "http://example.com/pricing" | ||
| "url": "http://example.com/pricing" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| ## FAQs | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.