POST api/members/send-email-verify
Request Information
URI Parameters
None.
Body Parameters
EmailVerifySendRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
Required |
|
| Name | string |
Required |
|
| Password | string |
Required |
|
| Role | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Account": "sample string 1",
"Name": "sample string 2",
"Password": "sample string 3",
"Role": 4
}
application/xml, text/xml
Sample:
<EmailVerifySendRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIProject.API.Models.DTO"> <Account>sample string 1</Account> <Name>sample string 2</Name> <Password>sample string 3</Password> <Role>4</Role> </EmailVerifySendRequestDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.