描述
重新发送验证邮件。
请求参数
公共请求参数,详见公共参数。
名称 |
类型 |
是否必须 |
描述 |
Action |
String |
是 |
操作接口名,系统规定参数,取值:ResendEmailVerification。 |
Email |
String |
是 |
邮箱,多个使用逗号(,)分隔。 |
Lang |
String |
否 |
接口返回信息语言,枚举值范围:zh 中文,en 英文。默认为en。 |
返回参数
错误码
错误代码 |
描述 |
HTTP状态码 |
语义 |
ParameterIllegal |
Parameter illegal. |
400 |
参数错误。 |
NetworkIOError |
Network IO Error. |
400 |
网络I/O异常。 |
示例
请求示例
http://domain-intl.aliyuncs.com/?Action=ResendEmailVerification
&Email=test1@aliyun.com,test2@aliyun.com
&<公共请求参数>
返回示例
<?xml version='1.0' encoding='UTF-8'?>
<ResendEmailVerificationResponse>
<FailList>
<SendResult>
<Email>test1@aliyun.com</Email>
<Message>The maximum number of attempts allowed to send the email verification link is exceeded.</Message>
<Code>SendTokenQuotaExceeded</Code>
</SendResult>
<SendResult>
<Email>test2@aliyun.com</Email>
<Message>The maximum number of attempts allowed to send the email verification link is exceeded.</Message>
<Code>SendTokenQuotaExceeded</Code>
</SendResult>
</FailList>
<RequestId>0EA54E99-DB48-4CE3-A099-6ED8E451B8AC</RequestId>
<SuccessList/>
</ResendEmailVerificationResponse>
{
"failList": [
{
"code": "SendTokenQuotaExceeded",
"email": "test1@aliyun.com",
"message": "The maximum number of attempts allowed to send the email verification link is exceeded."
},
{
"code": "ParameterIllegall",
"email": "test2@aliyun.com",
"message": "Parameter error"
}
],
"requestId": "8D93B5EC-09D5-43C3-A5ED-AFBC6A98DDDF",
"successList": []
}