HiTechCloud API
HiTechCloud APISSL APIDNS APIVNNIC GTLD Registrar APIUtility Endpoints
HiTechCloud APISSL APIDNS APIVNNIC GTLD Registrar APIUtility Endpoints
  1. Utility Endpoints
  • Login
    POST
  • Login SSO
    POST
  • User Request OTP Login
    POST
  • User Login OTP
    POST
  • Logout
    POST
  • Refresh Token
    POST
  • Revoke Token
    POST
  1. Utility Endpoints

User Login OTP

Developing
Production Environment
https://my.hitechcloud.vn/api
Production Environment
https://my.hitechcloud.vn/api
POST
https://my.hitechcloud.vn/api
/verify-login-otp
Last modified:2025-12-01 12:08:15
This API verifies the OTP sent to the user's email.
If the OTP is valid, the system returns client details and/or an authentication token for login.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

🟠400Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://my.hitechcloud.vn/api/verify-login-otp?email=string&otp=string' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "status": true,
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
    "client": {
        "id": 12345,
        "email": "emailValue",
        "name": "John Doe",
        "created_at": "2024-01-15"
    }
}
Modified at 2025-12-01 12:08:15
Previous
User Request OTP Login
Next
Logout
Built with