> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Auth0 Management Dashboard と Auth0 Management API を使用して、ユーザーに確認メールを再送する方法について説明します。

# 確認メールを再送する

ユーザーに確認メールを再送する必要がある場合は、Auth0 User Management Dashboard または Auth0 <Tooltip tip="Management API: お客様が管理タスクを実行するための製品です。" cta="用語集を表示" href="/ja/docs/glossary?term=Management+API">Management API</Tooltip> を使用して再送できます。

<Tabs>
  <Tab title="Auth0 Dashboard を使用">
    Auth0 Dashboard を使用して、ユーザーに確認メールを再送できます。

    1. Dashboard で [**User Management > Users**](https://manage.auth0.com/#/users) に移動します。
    2. ユーザーを選択します。
    3. **Actions** ドロップダウンメニューを開き、**Send Verification Email** を選択します。

    [Multiple Custom Domains](/ja/docs/customize/custom-domains/multiple-custom-domains) を有効にしている場合は、テナントの通知ドメインを選択する **Domain** オプションを使用できます。
  </Tab>

  <Tab title="Auth0 Management API を使用">
    Auth0 Management API を使用して、ユーザーに確認メールを再送できます。

    1. `update:users` スコープを持つ [Management API アクセストークン](/ja/docs/secure/tokens/access-tokens/management-api-access-tokens) を取得します。
    2. ユーザーの `user_id` を指定して、Management API の [Send an email address verification email](https://auth0.com/docs/api/management/v2#!/Jobs/post_verification_email) エンドポイントを呼び出します。

    #### リクエストの例

    ```json lines theme={null}
    {
       "user_id":"auth0|62463410c0242d00699461c8"
    }
    ```

    #### レスポンスの例

    ```json lines theme={null}
    {
       "type":"verification_email",
       "status":"pending",
       "created_at":"2022-03-31T23:08:05.612Z",
       "id":"job_PyfpRHlmpkSoDmCv"
    }
    ```

    [Multiple Custom Domains](/ja/docs/customize/custom-domains/multiple-custom-domains) を有効にしている場合は、`auth0-custom-domain` HTTP ヘッダーを含める必要があります。詳しくは、[Multiple Custom Domains](/ja/docs/customize/custom-domains/multiple-custom-domains#customize-email-handling-using-the-management-api) を参照してください。

    #### ジョブのステータスを確認する

    Management API の [Send an email address verification email](https://auth0.com/docs/api/management/v2#!/Jobs/post_verification_email) エンドポイントで作成されたジョブのステータスを確認できます。

    1. ジョブの `id` (レスポンスで返されます) を取得します。
    2. ジョブの `id` を指定して、Management API の [Get a job](https://auth0.com/docs/api/management/v2#!/Jobs/get_jobs_by_id) エンドポイントを呼び出します。

    ##### レスポンスの例

    ```json lines theme={null}
    {
       "type":"verification_email",
       "status":"completed",
       "created_at":"2022-03-31T23:08:05.612Z",
       "id":"job_PyfpRHlmpkSoDmCv"
    }
    ```
  </Tab>
</Tabs>
