Sends a verification email to the user with the given ID.
curl --request POST \
--url https://api.helpyousponsor.com/v1/user/{id}/send_verification_email \
--header 'Authorization: Bearer <token>'
{
"message": "<string>",
"status": "success"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User ID to whom the verification email is to be sent
Verification email sent successfully
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/user/{id}/send_verification_email \
--header 'Authorization: Bearer <token>'
{
"message": "<string>",
"status": "success"
}