Resend Activation Email
The Resend Activation Email endpoint allows you to resend the account activation email to a user who hasn’t activated their account yet.
POST /api/auth/resend-activation-emailRequest Body
{
"email": "user@example.com"
}| Property | Type | Required | Description |
|---|---|---|---|
email | string | yes | The email address of the user who needs a new activation email. |
Response
{
"data": [],
"timestamp": 1234567890,
"code": 200,
"status": "OK",
"meta": {}
}If the endpoint succeeds, it will send a new Activation Code Email to the email address. The user can then use this code to activate their account.