Resend MFA verification code via email

Send a new Multi-Factor Authentication (MFA) code to the user's registered email address when they haven't received it. This returns a requestId for follow-up actions.

Headers

Accept Example
Content-Type Example

Body

required
application/json
clientId string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/mfa/resend-email
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/mfa/resend-email" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "clientId": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "email": "string"
  }
}
Request Body
{
  "clientId": "string"
}