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

# Actions Triggers: post-change-password - Event Object

The `event` object for the post-change-password Actions trigger provides contextual information about the newly created user.

<table class="table">
  <thead>
    <tr>
      <th>Property</th>
      <th>Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <p><code>event.connection</code></p>
      </td>

      <td>
        <p>
          Details about the Connection that was used for the current
          transaction.
        </p>

        <p>Includes the following properties:</p>

        <ul>
          <li>
            <code>id</code> <em>String</em>.
            <span>The connection's unique identifier.</span>
          </li>

          <li>
            <code>metadata</code> <em>Optional dictionary</em>.
            <span>Metadata associated with the connection.</span>
          </li>

          <li>
            <code>name</code> <em>String</em>.
            <span>The name of the connection used to authenticate the user (such as
            <code>twitter</code> or <code>some-g-suite-domain</code>).</span>
          </li>

          <li>
            <code>strategy</code> <em>String</em>.
            <span>The type of connection. For social connections,
            <code>event.connection.strategy === event.connection.name</code>.
            For enterprise connections, the strategy is
            <code>waad</code> (Windows Azure AD), <code>ad</code> (Active
            Directory/LDAP), <code>auth0</code> (database connections), and so
            on.</span>
          </li>
        </ul>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>event.request</code></p>
      </td>

      <td>
        <p>Details about the request that initiated the transaction.</p>
        <p>Includes the following properties:</p>

        <ul>
          <li>
            <code>geoip</code>
            <em>Object</em>.

            <span>
              Contains geographical information about the request.
              <p>Includes the following properties:</p>

              <ul>
                <li><code>cityName</code> <em>Optional string</em>.</li>
                <li><code>continentCode</code> <em>Optional string</em>.</li>
                <li><code>countryCode</code> <em>Optional string</em>.</li>
                <li><code>countryCode3</code> <em>Optional string</em>.</li>
                <li><code>countryName</code> <em>Optional string</em>.</li>
                <li><code>latitude</code> <em>Optional number</em>.</li>
                <li><code>longitude</code> <em>Optional number</em>.</li>
                <li><code>subdivisionCode</code> <em>Optional string</em>.</li>
                <li><code>subdivisionName</code> <em>Optional string</em>.</li>
                <li><code>timeZone</code> <em>Optional string</em>.</li>
              </ul>
            </span>
          </li>

          <li>
            <code>hostname</code> <em>Optional string</em>.
            <span>The hostname that is being used for the authentication
            flow.</span>
          </li>

          <li>
            <code>ip</code> <em>String</em>.
            <span>The originating IP address of the request.</span>
          </li>

          <li>
            <code>language</code> <em>Optional string</em>.
            <span>The language requested by the browser.</span>
          </li>

          <li>
            <code>method</code> <em>String</em>.
            <span>The HTTP method used for the request</span>
          </li>

          <li>
            <code>user\_agent</code> <em>Optional string</em>.
            <span>The value of the <code>User-Agent</code> header received when
            initiating the transaction.</span>
          </li>
        </ul>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>event.tenant</code></p>
      </td>

      <td>
        <p>Details about the Tenant associated with the current transaction.</p>
        <p>Includes the following properties:</p>

        <ul>
          <li>
            <code>id</code> <em>String</em>.
            <span>The name of the tenant.</span>
          </li>
        </ul>
      </td>
    </tr>

    <tr>
      <td>
        <p><code>event.user</code></p>
      </td>

      <td>
        <p>
          An object describing the user on whose behalf the current transaction
          was initiated.
        </p>

        <p>Includes the following properties:</p>

        <ul>
          <li>
            <code>email</code> <em>Optional string</em>.
            <span>(unique) User's email address.</span>
          </li>

          <li>
            <code>email\_verified</code> <em>Optional boolean</em>.
            <span>Indicates whether the user has verified their email
            address.</span>
          </li>

          <li>
            <code>last\_password\_reset</code> <em>Optional string</em>.
            <span>Timestamp indicating the last time the user's password was
            reset/changed. At user creation, this field does not exist. This
            property is only available for Database connections.</span>
          </li>

          <li>
            <code>phone\_number</code> <em>Optional string</em>.
            <span>(unique) User's phone number.</span>
          </li>

          <li>
            <code>phone\_verified</code> <em>Optional boolean</em>.
            <span>Indicates whether the user has verified their phone number.</span>
          </li>

          <li>
            <code>user\_id</code> <em>Optional string</em>.
            <span>(unique) User's unique identifier.</span>
          </li>

          <li>
            <code>username</code> <em>Optional string</em>.
            <span>(unique) User's username.</span>
          </li>
        </ul>
      </td>
    </tr>
  </tbody>
</table>
