POST v2/members/registration/resend
resend the create an account verification email to the specified email address
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
inDto | email, activate_url and email_type |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "email": "sample string 1", "activate_url": "sample string 2", "email_type": 0 }
application/xml, text/xml
Sample:
<ResendVerificationEmailInDtoV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Web.API.Models.Input.V2"> <activate_url>sample string 2</activate_url> <email>sample string 1</email> <email_type>RECIT</email_type> </ResendVerificationEmailInDtoV2>
application/x-www-form-urlencoded
Sample:
Sample not available.