SSO Login Flow

PARAMETERS
Description
DATATYPE

clientId

The unique clientId is found on the dashboard.

string

REQUIRED

eventType

string

REQUIRED

eventLocation

string

REQUIRED

anonId

A unique anonymous ID for each user.

uuid

REQUIRED

url

string

OPTIONAL

isCookieBlocked

boolean

OPTIONAL

contentId

A unique id of each content.

string

REQUIRED

clickAction

string

REQUIRED

validationType

string

REQUIRED

firstTimeLogin

boolean

REQUIRED

userAgent

string

REQUIRED
chevron-rightUser SignUp View Eventhashtag

Description

It is an event that is triggered when the user views the sign-up/ login page for the first time.

Example:

{
"eventType": "VIEW",
"eventLocation": "SSO_SIGNUP",
"clientId": "5f92a62013332e0f667794dc",
"anonId": "b79064d2-2256-4c36-ad06-8c38cc0396c7",
"url": "http://localhost:9000/test.html",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"isCookieBlocked": 0,
"contentId":'contentId-1'
}
chevron-rightUser Login View Eventhashtag

Description

It is an event that is triggered when the user views the login page.

Example

{
"eventType": "VIEW",
"eventLocation": "SSO_LOGIN",
"clientId": "5f92a62013332e0f667794dc",
"anonId": "b79064d2-2256-4c36-ad06-8c38cc0396c7",
"url": "http://localhost:9000/test.html",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"isCookieBlocked": 0,
"contentId": 'article-20',
}
chevron-rightUser OTP View Eventhashtag

Description

It is an event that is triggered when the user views the OTP Page.

Example

{
"eventType": "VIEW",
"eventLocation": "SSO_LOGIN_OTP",
"clientId": "5f92a62013332e0f667794dc",
"anonId": "b79064d2-2256-4c36-ad06-8c38cc0396c7",
"url": "http://localhost:9000/test.html",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"isCookieBlocked": 0,
"contentId": 'article-20',
}

Note: This event is only needed to be sent when the Login is based on OTP.

chevron-rightUser Click Eventhashtag

Description

It is an event that is triggered when the user performs the click action when he/she logs in.

Example

chevron-rightUser Registration Eventhashtag

Description

It is an event that is triggered when the user registers to your platform for the first time.

Example

chevron-rightUser Validation Eventhashtag

Description

It is an event that is triggered when the user is validated whenever he logs in.

Example

Last updated