Skip to content

Commit 5a9ab54

Browse files
author
Thomas Gilbert
committed
fix supported methods
1 parent 8bd7588 commit 5a9ab54

File tree

1 file changed

+14
-18
lines changed
  • src/connections/destinations/catalog/inflection

1 file changed

+14
-18
lines changed

src/connections/destinations/catalog/inflection/index.md

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,6 @@ This destination is maintained by Inflection. For any issues with the destinatio
2121

2222
Inflection supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
2323

24-
### Page
25-
26-
Send [Page](/docs/connections/spec/page) calls to be added to *Product Activity* on Inflection App. For example:
27-
28-
```js
29-
analytics.page()
30-
```
31-
32-
33-
### Screen
34-
35-
Send [Screen](/docs/connections/spec/screen) calls to be added to *Product Activity* on Inflection App. For example:
36-
37-
```obj-c
38-
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
39-
```
40-
41-
4224
### Identify
4325

4426
Send [Identify](/docs/connections/spec/identify) calls to Identify a user. The traits should have the `email` trait to be processed. All the other reserved traits are optional, but will be used to populate *Person DB* if available.
@@ -58,4 +40,18 @@ Send [Track](/docs/connections/spec/track) calls to be added to *Product Activit
5840

5941
```js
6042
analytics.track('Login Button Clicked')
43+
```
44+
45+
### Group
46+
47+
Send [Group](/docs/connections/spec/group) calls to tie a user to an org. There are two IDs that are relevant in a group call: the userId, which belongs and refers to the user, and the groupId, which belongs and refers to the specific group. A user can belong to multiple groups, each associated with a different groupId, but the user will have only one userId linked to each of these different groups.
48+
49+
```js
50+
analytics.group("0e8c78ea9d97a7b8185e8632", {
51+
name: "Initech",
52+
industry: "Technology",
53+
employees: 329,
54+
plan: "enterprise",
55+
"total billed": 830
56+
});
6157
```

0 commit comments

Comments
 (0)