Skip to main content

Delete an address

DELETE 
/account/addresses/:id

Permanently deletes an address.

Request

Path Parameters

    id stringrequired

    ID of Address to delete

Responses

200: Address deleted response

404: Resource not found

Request samples


curl -L -X DELETE 'https://api.telnyx.com/account/addresses/:id' \
-H 'Accept: application/json'

Response samples


{
"id": "string",
"first_name": "John",
"last_name": "Smith",
"business_name": "Telnyx",
"phone_number": "+13125364300",
"street_address": "311 W. Superior St.",
"extended_address": "Suite 504",
"locality": "CHICAGO",
"administrative_area": "IL",
"postal_code": "60654",
"country_code": "US",
"address_book": true
}