website logo
HomeGo to Dashboard
User Guide
How-To Videos
Developers
Navigate through spaces
⌘K
Getting Started
Introduction
Compatibility
Terminology
SDK Installation
Shopify
Any Website
Dukaan
Angular 2+
WooCommerce
WordPress
Android Native
iOS Native
Flutter
Cordova
Ionic
React Native
Data Integration
Data Models
Mandatory Events
Mandatory Properties
Call to Action
System Events
Device Properties
Docs powered by archbee 

General Apps

20min

The following events are helpful for any kind of business domain.

Sign Up

When the user signed up.

Properties

Name

Type

Required

Description

method

String

Yes

The method of signing up. For example, it can be Google, Email, or Facebook.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
const props = {
    "method": "Email"
};

cooeeSDK.sendEvent("Sign Up", props);


Log In

When the user log-in into your app using their credential (this is not app open)

Properties

Name

Type

Required

Description

method

String

Yes

The method of signing in. For example, it can be Google, Email, or Facebook.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
const props = {
    "method": "METHOD"
};

cooeeSDK.sendEvent("Log In", props);


Search

When a user searches your content

Properties

Name

Type

Required

Description

query

String

Yes

What user searched.

category

Category

No

Which Category user search.

tag

Tag

No

Which Tag user search.

Code Example

The following example includes optional properties too.

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
const props = {
    "query": "WHAT_USER_SEARCH",
    "category": {
        "id": "1234",
        "name": "CATEGORY_NAME"
    },
    "tag": {
        "id": "1234",
        "name": "TAG_NAME"
    }
};

cooeeSDK.sendEvent("Search", props);


Tutorial Begin

When a user begins an onboarding tutorial.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
cooeeSDK.sendEvent("Tutorial Begin");


Tutorial Complete

When a user completes the tutorial.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
cooeeSDK.sendEvent("Tutorial Complete");


Share App

When a user shares your app.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
cooeeSDK.sendEvent("Share App");


View Category

When a user selects any kind of category within your app.

Properties

Name

Type

Required

Description

category

Category

Yes

The category that the user selected.

Code Example

JS
TypeScript
Java
Kotlin
ObjectiveC
Swift
Dart
|
const props = {
    "category": {
        "id": "1234",
        "name": "CATEGORY_NAME"
    }
};

cooeeSDK.sendEvent("View Category", props);




Updated 03 Mar 2023
Did this page help you?
Yes
No
PREVIOUS
Mandatory Events
NEXT
Educational Apps
Docs powered by archbee 
TABLE OF CONTENTS
Sign Up
Properties
Code Example
Log In
Properties
Code Example
Search
Properties
Code Example
Tutorial Begin
Code Example
Tutorial Complete
Code Example
Share App
Code Example
View Category
Properties
Code Example