POST api/v1/Member/MailVerify
Request Information
URI Parameters
None.
Body Parameters
DaoMailVerify| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
Required String length: inclusive between 4 and 16 |
|
| string |
Required Matching regular expression pattern: \A(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)\Z String length: inclusive between 0 and 70 |
||
| MailType | string |
Required String length: inclusive between 0 and 20 |
|
| ClientIp | string |
Required String length: inclusive between 0 and 20 |
|
| RefererUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"Email": "sample string 2",
"MailType": "sample string 3",
"ClientIp": "sample string 4",
"RefererUrl": "sample string 5"
}
application/xml, text/xml
Sample:
<DaoMailVerify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models.DAO.Softnyx"> <ClientIp>sample string 4</ClientIp> <Email>sample string 2</Email> <MailType>sample string 3</MailType> <RefererUrl>sample string 5</RefererUrl> <UserId>sample string 1</UserId> </DaoMailVerify>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code | ResultCode |
None. |
|
| Message | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 0,
"Message": {}
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models"> <Code>Fail</Code> <Message /> </APIResult>