Remove an E911 Address From Your Account

Lets you delete an E911 address associated with your account.

Endpoint

DELETE /e911s/:e911_id

Path Parameter

  • e911_id
    integer REQUIRED

    The record ID of the E911 address to be removed from your account.

Response Fields

On success, the HTTP status code in the response header is 204 No Content which means that the server successfully processed the request and is not returning any content.


Example Request

DELETE /v2/e911s/20155 HTTP/1.1
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json

                        

Example Request

curl -X DELETE https://api.flowroute.com/v2/e911s/20155 -u accessKey:secretKey

                        

Example Response

204 NO CONTENT

401 Unauthorized

{
  "errors": [
    {
      "detail": "Authentication failed.",
      "id": "7fc8c70a-ca58-430c-b383-b89df84f8083",
      "status": 401,
      "title": "Unauthorized"
    }
  ]
}

                

403 Forbidden

{  "errors": 
  [
    {
      "status": 403, 
      "detail": "", 
      "title": "ActionNotAuthorizedError"
    }
  ]
}