Skip to main content
GET
/
addresses
/
{address_id}
Get address information by id
curl --request GET \
  --url https://api.synctera.com/v2/addresses/{address_id} \
  --header 'Authorization: Bearer <token>'
{
  "creation_date": "2019-01-01T00:00:00Z",
  "is_active": true,
  "last_updated_time": "2010-05-06T12:23:34.321Z",
  "address_line_1": "321 Main St",
  "address_line_2": "Apt 34",
  "city": "Chicago",
  "country_code": "US",
  "postal_code": "60622",
  "state": "IL",
  "business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

address_id
string<uuid>
required

ID of the address

Example:

"1a582c51-e4ff-4e57-9558-08cab6b963aa"

Response

Address information

creation_date
string<date-time>
required

Date and time when the address was created.

Example:

"2019-01-01T00:00:00Z"

is_active
boolean
required

Whether the address is active or not

Example:

true

last_updated_time
string<date-time>
required
Example:

"2010-05-06T12:23:34.321Z"

address_line_1
string

street address

Example:

"321 Main St"

address_line_2
string

street address

Example:

"Apt 34"

city
string

city

Example:

"Chicago"

country_code
string

country code

Example:

"US"

postal_code
string

postal code

Example:

"60622"

state
string

state

Example:

"IL"

business_id
string<uuid>

The identifier for the business customer associated with address.

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

customer_id
string<uuid>

The identifier for the personal customer associated with address.

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"