Skip to main content
POST
/
verification-sms
/
send-password-reset-code
Send Verification Code For Password Reset
curl --request POST \
  --url https://apigw.bienport.com/api/verification-sms/send-password-reset-code \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'OrganizationId: <organizationid>' \
  --data '{
  "screenName": "12343123"
}'
{
  "status": false,
  "userId": 20199,
  "message": "SMS sent. / SMS not sent."
}

Headers

Authorization
string
required

Access Token

OrganizationId
string
required

Organization ID

Body

application/json

sendVerificationCodeRequest

Send Verification Code Request Model

screenName
string

Screen Name

Example:

"12343123"

Response

Verification process feedback

status
boolean

The sending status of the SMS.

Example:

false

userId
integer

User ID to send SMS. (It just returns the forgot password request.)

Example:

20199

message
string

The sending message of the SMS.

Example:

"SMS sent. / SMS not sent."