POST
/
user
/
{id}
/
send_verification_email
curl --request POST \
  --url https://api.helpyousponsor.com/v1/user/{id}/send_verification_email \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

User ID to whom the verification email is to be sent

Response

200
application/json
Verification email sent successfully
message
string
status
string
Example:

"success"