LogoLogo
  • Introduction
  • Quick Start
  • User Management
  • Card Management
  • Address Management
  • Payment Processing
  • Account Secuirty
  • Payment Security
  • Glossary
  • How to Integrate
    • WooCommerce
    • Magento
    • Custom System
Powered by GitBook
On this page
  • 1. Change Password
  • Response:
  • 2. Forget Password
  • Response:
Export as PDF

Account Secuirty

This section emphasizes the security aspects of user accounts, including password management and account recovery options. It ensures users can maintain secure access to their accounts and recover access if necessary.

Included APIs:

  • Change Password: Provides users with the ability to update their password, enhancing account security.

  • Forget Password: Supports account recovery by initiating a password reset for users who have forgotten their login details.

1. Change Password

  • POST /api/SMS/ChangeUserPasswords

  • Purpose: Allows users to change their account password.

  • Request Body:

{
  "Email": "bruce@waynetech.com",
  "OldPassword": "Batman@123",
  "NewPassword": "TheBatman@123"
}

Response:

{
  "status": 1,
  "message": "Password has been changed"
}

2. Forget Password

  • POST /api/User/ForgotPasswordCheckout

  • Purpose: Initiates a password reset process for users who have forgotten their password.

  • Request Body:

{
  "Email": "bruce@waynetech,com"
}

Response:

{
  "status": 1,
  "message": "Reset password link has been sent to your mail id"
}
PreviousPayment ProcessingNextPayment Security

Last updated 1 year ago