メールアドレスの所有検証開始 (POST /)

指定したメールアドレスを送信元IDとして登録し、メールアドレスを所有していることを確認するための検証手続きを開始します。

レスポンスとは別に、指定したアドレスに確認メールが送信されます。メールに記載されているURLにアクセスすることで検証手続きが完了します。

メールアドレスの所有が確認できると、このメールアドレスからのメール送信が可能になります。

Request Headers

API共通リクエストヘッダー」を参照。

Request Parameter

Action

実行するAPI名。

"VerifyEmailIdentity"

Data Type Cardinality
String 1..1

Version

APIバージョン。

"v1.0"(任意)

Data Type Cardinality
String 0..1

EmailAddress

検証するメールアドレス。

最大256文字。

Data Type Cardinality
String 1..1

Request Elements

なし

HTTPステータス

ステータス

リクエストのステータスを返却する。

以下の値を返却する。
200:
正常終了
400:
リクエストのパラメーターエラー
401:
認証エラー
403:
アクセス拒否
500:
内部エラー
Data Type Cardinality
Int 1..1

Response Elements(正常終了時)

VerifyEmailIdentityResponse

レスポンスのエンベロープ。

Data Type Cardinality Parent Element Child Element(s)
- 1..1 None VerifyEmailIdentityResult

ResponseMetadata

VerifyEmailIdentityResult

結果のエンベロープ。

Data Type Cardinality Parent Element Child Element(s)
- 1..1 VerifyEmailIdentityResponse None

ResponseMetadata

メタデータのエンベロープ。

Data Type Cardinality Parent Element Child Element(s)
- 1..1 VerifyEmailIdentityResponse RequestId

RequestId

リクエストを一意に識別するID。

問題が発生した場合の問い合わせの際にトラブルシューティングを行うために必要です。

UUID形式 例:647cd254-e0d1-44a9-af61-1d6d86ea6b77

Data Type Cardinality Parent Element Child Element(s)
xsd:string 1..1 ResponseMetadata None

Example of Request


POST / HTTP/1.1
Date: Fri, 06 Jun 2014 11:00:37 GMT
Content-Length: …
Host: mail.jp-east-1.tps5.fujitsu.com
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Auth-Token: MIIFvgY…

Action=VerifyEmailIdentity
&EmailAddress=user%40example.com
     

Example of Response


HTTP/1.1 200 OK
Date: Fri, 06 Jun 2014 11:00:38 GMT
Content-Length: …
Content-Type: application/xml
x-fj-request-id: 65ce6f91-4e8d-44a1-b33e-5ba3de2f528b

<?xml version="1.0" encoding="UTF-8"?>
<VerifyEmailIdentityResponse>
  <VerifyEmailIdentityResult/>
  <ResponseMetadata>
    <RequestId>65ce6f91-4e8d-44a1-b33e-5ba3de2f528b </RequestId>
  </ResponseMetadata>
</VerifyEmailIdentityResponse>