User Management
The User Management section deals with endpoints related to the creation, authentication, and management of user accounts within Krepling Pay. It ensures your customers can securely register, log in, and manage their profiles.
Included APIs:
Save New User: Registers a new user with all necessary details like name, email, and address, ensuring that users can start transactions.
Send OTP Via Email: Sends a One-Time Password to the user's email for verification purposes, enhancing security by verifying the email address ownership.
Verify OTP: Confirms the OTP provided by the user, completing the verification process and activating the user account.
User Login: Authenticates the user's credentials, granting access to their account and enabling them to perform transactions securely.
1. Save New User
Endpoint:
POST /api/Checkout/SaveNewUser
Purpose: Registers a new user in the checkout application.
Request Body:
Response:
Status 200: User added successfully.
2. Send OTP Via Email
Endpoint:
POST /api/SMS/GetSixDigitOnEmail
Purpose: Sends an OTP to the user's email for verification.
Request Body:
Response:
Status 200: OTP sent successfully.
3. Verify OTP
Endpoint:
POST /api/SMS/VerifyOTPbyEmail
Purpose: Verifies the OTP entered by the user.
Request Body:
Response:
Status 200: OTP verified successfully.
4. User Login
Endpoint:
POST /api/Checkout/CustomerLogin
Purpose: Authenticates and logs in the user.
Request Body:
Response:
Status 200: Login successful.
Last updated