provision a new e911 record

API Docs by APIMATIC

Provision a New E911 Record

Use this method to provision a new E911 record for the specified DID

This endpoint requires authentication.

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

Street number

Street name

Suite or floor number

City

State or province

Postal code

Postal code plus four characters

Response Type

Void

Errors

HTTP Status CodeError DescriptionException Class
400
Request failed. The response indicates the reason for the error.
curl -X POST \
  --url 'https://api.wavix.com/v1/e911_records?appid=appid' \
  -H 'Content-Type: application/json' \
  --data-raw '{
  "street_number": "1230",
  "street": "Crim Lane",
  "location": "221b",
  "city": "Paton",
  "state": "Iowa",
  "zip_code": "50217",
  "zip_plus_four": "zip_plus_four4"
}'