{{ define "content" }}

CSV Address Validation

Upload and process CSV files to validate addresses

Back to Dashboard
{{if .Result}}

Total Records

{{ .Result.TotalRecords }}

Validated

{{ .Result.ValidatedCount }}

Not Found

{{ .Result.NotFoundCount }}

Errors

{{ .Result.ErrorCount }}

Validated Addresses

{{if .Result.ValidatedAddresses}}
    {{range .Result.ValidatedAddresses}}
  • {{ . }}
  • {{end}}
{{else}}

No validated addresses found.

{{end}}

Not Found Addresses

{{if .Result.NotFoundAddresses}}
    {{range .Result.NotFoundAddresses}}
  • {{ . }}
  • {{end}}
{{else}}

No missing addresses.

{{end}}

Errors

{{if .Result.ErrorMessages}}
    {{range .Result.ErrorMessages}}
  • {{ . }}
  • {{end}}
{{else}}

No errors encountered.

{{end}}
{{end}}

How it works:

  • Upload a CSV file with address data
  • Preview and select the address column
  • Addresses will be normalized (lowercase) and matched
  • Matching addresses will be marked as validated

or drag and drop

CSV files up to 10MB

{{ end }}