From 5a9ab54ca737a2868d2d0da8308226ee23e15a76 Mon Sep 17 00:00:00 2001 From: Thomas Gilbert Date: Wed, 11 Oct 2023 15:43:08 -0400 Subject: [PATCH] fix supported methods --- .../destinations/catalog/inflection/index.md | 32 ++++++++----------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/src/connections/destinations/catalog/inflection/index.md b/src/connections/destinations/catalog/inflection/index.md index a0c58895a1..c5ac0630e6 100644 --- a/src/connections/destinations/catalog/inflection/index.md +++ b/src/connections/destinations/catalog/inflection/index.md @@ -21,24 +21,6 @@ This destination is maintained by Inflection. For any issues with the destinatio Inflection supports the following methods, as specified in the [Segment Spec](/docs/connections/spec). -### Page - -Send [Page](/docs/connections/spec/page) calls to be added to *Product Activity* on Inflection App. For example: - -```js -analytics.page() -``` - - -### Screen - -Send [Screen](/docs/connections/spec/screen) calls to be added to *Product Activity* on Inflection App. For example: - -```obj-c -[[SEGAnalytics sharedAnalytics] screen:@"Home"]; -``` - - ### Identify 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 ```js analytics.track('Login Button Clicked') +``` + +### Group + +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. + +```js + analytics.group("0e8c78ea9d97a7b8185e8632", { +name: "Initech", +industry: "Technology", +employees: 329, +plan: "enterprise", +"total billed": 830 +}); ``` \ No newline at end of file