validate address

API Docs by APIMATIC

Validate Address

Use this method to validate E911 service address before activating the feature on a specific DID. The response will include one of the following:

  • Full match, which means the address submitted is valid and can be added to the PSAP database
  • Corrected address that does not exactly match the submitted address, but can be added to the PSAP database
  • In case if the submitted address is not close enough to find match, candidate addresses can be returned
  • No match

This endpoint requires authentication.

POST /e911_records/validate_address
  • EXPLORER
  • PARAMETERS
Endpoint Arguments*
Parameters*
body (E911ValidateAddressRequest)*

DID to activate the service for

E911 address name

address (E911Address)*

Street number

Street name

Suite or floor number

City

State or province

Postal code

Response Type

curl -X POST \
  --url 'https://api.wavix.com/v1/e911_records/validate_address?appid=appid' \
  -H 'Accept: application/json'\
  -H 'Content-Type: application/json' \
  --data-raw '{
  "phone_number": "phone_number6",
  "name": "name6",
  "address": {
    "street_number": "1230",
    "street": "Crim Lane",
    "location": "221b",
    "city": "Paton",
    "state": "Iowa",
    "zip_code": "50217"
  }
}'