Whenever the user did not receive his account verification email it can be requested again.
{warning} The user must be logged in, in order to request this resource.
Method | Uri | Auth | Permissions |
---|---|---|---|
POST |
/v1/auth/email/resend |
Bearer JWT-Token |
none |
The API requires a header Accept
to be submitted with the request:
{
"Accept": "application/json",
"Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3M..."
}
Condition : All required data provided is valid and added to the request body.
Code : 200 Okay
{info} This will trigger an email notification.
Condition : If required headers are invalid or missing.
Code : 401 Unauthorized
{
"message": "You must log in to do that.",
"errors": [
"Unauthenticated."
]
}