> For the complete documentation index, see [llms.txt](https://fusionauth.io/docs/llms.txt)

# Identity Verified | FusionAuth Docs

Learn about the User Identity Verified event.

# Identity Verified

[Edit on GitHub](https://github.com/FusionAuth/fusionauth-site/blob/main/astro/src/content/docs/extend/events-and-webhooks/events/user/user-identity-verified.mdx)

[View Markdown](https://fusionauth.io/docs/extend/events-and-webhooks/events/user/user-identity-verified.md)

## User Identity Verified

This event has been available since 1.59.0

This event is generated when a user verifies an identity, which could be an email address or phone number.

Event type

user.identity.verified

### Event Scope

This is a tenant scoped event.

It can be sent to all tenants or to one or more specified tenants. However, those tenants will not be sent events for other tenants, but only events related to themselves.

### Transaction Compatibility

This event is transactional. The final state of the operation which caused the webhook is not persisted to FusionAuth until after the webhook finishes; [learn more](https://fusionauth.io/docs/extend/events-and-webhooks/writing-a-webhook.md#calling-fusionauth-apis-in-webhooks)

The [User Email Verified](https://fusionauth.io/docs/extend/events-and-webhooks/events/user/user-email-verified.md) event is also created when email identities are verified and will continue to function for compatibility reasons. This event is more generic and will be used for all identity verifications, including phone numbers.

### Event Body

`event.createInstant`Long

The [instant](https://fusionauth.io/docs/reference/data-types.md#instants) that the event was generated.

`event.id`UUID

The unique Id of the event. You may receive an event more than once based upon your transaction settings. This Id may be used to identify a duplicate event.

`event.info.data`Object

An object that can hold any information about the event that should be persisted.

`event.info.deviceDescription`String

The description of the device associated with the event.

`event.info.deviceName`String

The device name associated with the event.

`event.info.deviceType`String

The type of device associated with the event.

`event.info.ipAddress`String

The source IP address of the event.

`event.info.location.city`String

The city where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.country`String

The country where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.latitude`Double

The latitude where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.longitude`Double

The longitude where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.region`String

The geographic location where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.location.zipcode`String

The zip code where the event originated.

**Note:** To use event location data, you'll need an Enterprise plan.

`event.info.os`String

The operating system associated with the event.

`event.info.userAgent`String

The user agent associated with the event.

`event.linkedObjectId`UUIDAvailable since 1.53.0

The id of the user impacted by this event.

`event.tenantId`UUID

The unique tenant identifier. This value may not be returned if not applicable.

`event.type`String

The event type, this value will always be **user.identity.verified**.

`event.loginId`String

The `loginId` of the identity that was verified. This is the email address or phone number.

`event.loginIdType`String

The `loginIdType` of the identity that was verified. This describes what `event.loginId` is, such as `email` or `phoneNumber`.

`event.user`Object

The user that has verified an identity. See the [Users API](https://fusionauth.io/docs/apis/users.md) for property definitions and example JSON.

*Example Event JSON*

```json
{
  "event": {
    "createInstant": 1563399203743,
    "id": "a5b9cae9-aacd-4649-a0f2-50bba29039c4",
    "info": {
      "ipAddress": "42.42.42.42",
      "location": {
        "city": "Denver",
        "country": "US",
        "displayString": "Denver, CO, US",
        "latitude": 39.77777,
        "longitude": -104.9191,
        "region": "CO"
      },
      "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36"
    },
    "tenantId": "e872a880-b14f-6d62-c312-cb40f22af465",
    "type": "user.identity.verified",
    "loginId": "example@fusionauth.io",
    "loginIdType": "email",
    "user": {
      "active": true,
      "connectorId": "e3306678-a53a-4964-9040-1c96f36dda72",
      "email": "example@fusionauth.io",
      "id": "00000000-0000-0001-0000-000000000000",
      "passwordChangeRequired": false,
      "identities": [
        {
          "primary": true,
          "type": "email",
          "value": "example@fusionauth.io",
          "verified": true,
          "verifiedReason": "Completed",
          "verifiedInstant": 1563399203743
        }
      ],
      "registrations": [
        {
          "applicationId": "10000000-0000-0002-0000-000000000001",
          "id": "00000000-0000-0002-0000-000000000000",
          "insertInstant": 1446064706250,
          "roles": [
            "user"
          ],
          "usernameStatus": "ACTIVE"
        }
      ],
      "tenantId": "f24aca2b-ce4a-4dad-951a-c9d690e71415",
      "twoFactorEnabled": false,
      "usernameStatus": "ACTIVE",
      "verified": true
    }
  }
}
```