πForget Phone Info
post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Body
passwordstring | nullableOptional
updateStepIdinteger Β· enumOptionalPossible values:
Responses
200
Success
400
Bad Request
post
POST /api/v1/forget/ForgetRequest/VerifyPassword HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"password": "text",
"updateStepId": 1
}
{
"status": 0
}
A.Update Phone
post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Body
codestring | nullableOptional
phoneNumberstring | nullableOptional
Responses
200
Success
400
Bad Request
post
POST /api/v1/forget/ForgetPhoneInfo/Update HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"code": "text",
"phoneNumber": "text"
}
{
"id": 1
}
B. Send OTP :
post
Authorizations
Query parameters
idinteger Β· int32Optional
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Responses
200
Success
400
Bad Request
post
POST /api/v1/forget/ForgetPhoneInfo/SendOTP HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"status": 0
}
Validate OTP:
post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional
ex: Bearer <Replace Token From Third Step (Select Step)>
Body
idinteger Β· int32Optional
otpstring | nullableOptional
Responses
200
Success
400
Bad Request
post
POST /api/v1/forget/ForgetPhoneInfo/ValidateOTP HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"id": 1,
"otp": "text"
}
{
"status": 0
}
Last updated