curl --request POST \
--url https://api.example.com/auth/send-forgot-password-text \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"countryAbbreviation": "<string>",
"phoneNumber": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Calls the sms service to send out a text message through them for the user to reset their password.
curl --request POST \
--url https://api.example.com/auth/send-forgot-password-text \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"countryAbbreviation": "<string>",
"phoneNumber": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}