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/actions-podscribe/index.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ title: Podscribe Destination
8
8
9
9
## Getting started
10
10
11
-
1. From the Segment web app, click **Catalog**.
12
-
2. Search for "Podscribe" in the Catalog, select it, and choose which of your sources to connect the destination to.
11
+
1. From the Segment web app, navigate to **Connections > Catalog**.
12
+
2. Search for "Podscribe", select it, and choose which of your sources to connect the destination to.
13
13
14
14
Once you start sending data to the Podscribe's Destination it will take up to 20 minutes to appear in the Podscribe postbacks page.
15
15
@@ -21,9 +21,9 @@ If you're not familiar with the Segment Specs, take a look to understand what th
21
21
analytics.page();
22
22
```
23
23
24
-
Page calls will be sent to Podscribe as a `view` event.
24
+
Page calls will be sent to Podscribe as a View event.
25
25
26
-
Podscribe is an attribution platform, and as such, we need more context about the visitor than just a User ID. Analytics.js [automatically collects context fields](/docs/connections/spec/common/#context-fields-automatically-collected). Podscribe requires certain context fields and properties for page calls. Below is an example of a raw JSON payload that contains the minimum requirements.
26
+
Podscribe is an attribution platform, and as such, Podscribe needs more context about the visitor than just a User ID. Analytics.js [automatically collects context fields](/docs/connections/spec/common/#context-fields-automatically-collected). Podscribe requires certain context fields and properties for Page calls. Below is an example of a raw JSON payload that contains the minimum requirements.
27
27
28
28
```js
29
29
{
@@ -41,8 +41,11 @@ Podscribe is an attribution platform, and as such, we need more context about th
41
41
}
42
42
```
43
43
44
-
For page events Podscribe requires a `context` object that contains a `userAgent` and an `ip` field and a `properties` object that contains a `referrer` and a `url` field.
45
-
As you can see in the page event's raw JSON payload above.
44
+
For Page events Podscribe requires:
45
+
- A `context` object that contains a `userAgent` and an `ip` field
46
+
- A `properties` object that contains a `referrer` and a `url` field.
47
+
48
+
You'll see these in the Page event's raw JSON payload above.
46
49
47
50
The `context` and `properties` object are required, along with the fields in them. If you're using Segment server-side you must send these attributes.
Track calls will be mapped to Podscribe events. Podscribe support the following from the Segment Spec:
65
+
Track calls will be mapped to Podscribe events. Podscribe supports the following from the Segment Spec:
63
66
64
67
-[Signed Up](/docs/connections/spec/b2b-saas/#signed-up) as `signup`
65
68
-[Order Completed](/docs/connections/spec/ecommerce/v2/#order-completed) as `purchase`
66
69
67
-
For track events Podscribe requires a `context` object that contains a `userAgent` and an `ip` Podscribe also requires a `page` object that contains a `referrer` and a `url` field.
68
-
Analytics.js [automatically collects context fields](/docs/connections/spec/common/#context-fields-automatically-collected). Podscribe requires certain context fields for track calls. Below is an example of a raw JSON payload that contains the minimum requirements.
70
+
For Track events, Podscribe requires:
71
+
- A `context` object that contains a `userAgent`
72
+
- An `ip` Podscribe also requires a `page` object that contains a `referrer` and a `url` field
73
+
74
+
Analytics.js [automatically collects context fields](/docs/connections/spec/common/#context-fields-automatically-collected). Podscribe requires certain context fields for Track calls. Below is an example of a raw JSON payload that contains the minimum requirements.
0 commit comments