# Find an age verification record

Source: https://developer.avalara.com/avatax-for-bevalc/age-verification-api/find-an-age-verification-record/

# Find an age verification record

Run the [FindAgeVerification](https://sandbox-rest.avatax.com/swagger/ui/index.html?urls.primaryName=Alcohol%20Shipping%20Verification#/Age%20Verification/findAgeVerification) endpoint to retrieve a previously stored age verification response.

## Endpoint

PUT /api/v2/ageverification/store/identity/find

## Input fields for find verification

The table below describes the required and optional fields for the find age verification request.

Field name

Description

Required?

`firstName`

The first name of the person whose age you want to verify.

Yes

`lastName`

The last name of the person whose age you want to verify.

Yes

`address`

The address of the person whose age you want to verify. One of the following sets of attributes are required for`address`:

-   `line1`,`city`,`region`
-   `line1`,`postalCode`

A`country` field can also be provided, but only`US` and`USA` are valid.

Yes

`DOB`

The ISO-8601 compliant date of birth of the person whose age you want to verify. Note that a date of birth can be specified in a transaction using the`PurchaserDOB` and`RecipientDOB` parameters.

No

## Request

```
curl    -X POST    -H 'Accept: application/json'    -H 'Authorization: Basic aHR0cHdhdQNoOmY='    -H 'Content-Type: application/json'    --data '{      "firstName": "John",      "lastName": "Doe",      "address": {        "line1": "255 S King St",        "city": "Seattle",        "region": "WA",        "country": "US",        "postalCode": "98104"      },      "DOB": "1994-10-01"    }'    'https://sandbox-rest.avatax.com/api/v2/ageverification/store/identity/find'
```

## Response

The response returns information about the stored age verification.

```
{  "isOfAge": false,  "failureCodes": [    "deceased",    "dob_unverifiable"  ],  "createdUtc": "2022-10-07T18:40:53.534Z"}
```

[Previous](/avatax-for-bevalc/age-verification-api/store-verification)

[Next](/avatax-for-bevalc/age-verification-api/store-if-verified)