Skip to content

Commit 539dae5

Browse files
committed
a few initial edits
1 parent 8152de0 commit 539dae5

File tree

1 file changed

+15
-9
lines changed
  • src/connections/destinations/catalog/actions-podscribe

1 file changed

+15
-9
lines changed

src/connections/destinations/catalog/actions-podscribe/index.md renamed to src/connections/destinations/catalog/actions-podscribe/index.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ title: Podscribe Destination
88

99
## Getting started
1010

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.
1313

1414
Once you start sending data to the Podscribe's Destination it will take up to 20 minutes to appear in the Podscribe postbacks page.
1515

@@ -21,9 +21,9 @@ If you're not familiar with the Segment Specs, take a look to understand what th
2121
analytics.page();
2222
```
2323

24-
Page calls will be sent to Podscribe as a `view` event.
24+
Page calls will be sent to Podscribe as a View event.
2525

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.
2727

2828
```js
2929
{
@@ -41,8 +41,11 @@ Podscribe is an attribution platform, and as such, we need more context about th
4141
}
4242
```
4343

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.
4649

4750
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.
4851

@@ -59,13 +62,16 @@ analytics.track("Order Completed", {
5962
});
6063
```
6164

62-
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:
6366

6467
- [Signed Up](/docs/connections/spec/b2b-saas/#signed-up) as `signup`
6568
- [Order Completed](/docs/connections/spec/ecommerce/v2/#order-completed) as `purchase`
6669

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.
6975

7076
```js
7177
{

0 commit comments

Comments
 (0)