Skip to main content

Retrieve an address

GET 
/account/addresses/:id

Retrieves the details of an existing address.

Request

Path Parameters

    id stringrequired

    ID of Address to retrieve

Responses

200: Address record response

401: Unauthorized

404: Resource not found

Request samples


curl -L '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
}