π΅Forget Profile
1. Create Session Token :
First Step When Customer Click On Forget You Have To Initialize Session First By Creating Session Token Using The Following API :
post
Authorizations
Header parameters
Accept-LanguageStringOptional
Body
tenantIdstring | nullableOptional
tenantSecretstring | nullableOptional
Responses
200
Success
400
Bad Request
post
POST /api/v1/Auth/GenerateForgetSessionTokenForOrganization HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 41
{
"tenantId": "text",
"tenantSecret": "text"
}
{
"token": "text",
"expirationDate": "2025-06-30T16:20:20.371Z"
}
2. Import eNROLL JS File in index.html :
<script src="eNROLL.min.js"></script>
3. Add Div Element With Specifying Id For This Div
<div id="myDiv">
</div>
4. Initialize eNroll Component Any Where In Your JS File After Document Is Loaded:
eNROLL.init({
elementId:"myDiv", // The Id We Set Before For Our Div
url:"{{environment.url}}", // this parameter is sent to you by email after acceptiong your org
sessionId://Token We Got In Step 1 From The API,
mode:"forgot",
onExit:()=>{
// define What Happen When User Exit From eNROLL Plugin
}
});
Last updated