CONTACT ME.

Get In Touch Now !

Get in touch

We're on a mission to help and empower 5 million youth to grow in their dreams, careers, and skills as they redefine our country by making a positive difference.

Address

10XAbility, Plot No. 25, First Floor, Industrial Area, Phase 1, Chandigarh, India

Contact

Phone number:

+91 9026523736

+91 9044226668

Email: connect@10xability.com

© 2026 VIJAY PARTHASARATHY.

Contacts

vijaypsarathy21@gmail.com

ceo@thegoldenladderacademy.com

+91 9980466244

+91 9880009453

Bangalore

Powered by Tealfeed

// --- SERVER CODE --- const jwt = require('jsonwebtoken');   const secret = process.env.CHATBOT_IDENTITY_SECRET; // Your chatbase secret key (should be stored as a secret not in the code)   const user = await getSignedInUser(); // Get the current user signed in to your site   const token = jwt.sign( { user_id: user.id, // Your user's id email: user.email, // User's email stripe_accounts: user.stripe_accounts, // User's stripe accounts for stripe integration // ... other custom attributes }, secret, { expiresIn: '1h' } );   // --- CLIENT CODE --- const token = await getUserToken(); // Get the token from your server window.chatbase('identify', { token }); // identify the user with Chatbase