We're upgrading our API
On June 6th, 2019, Mailbox API 1.0 will be sunsetted, and at that time any apps using this legacy API will no longer work. Please use Mailbox API 2.0 instead.
Customer Address Object
Field Guide
Name | Type | Example | Notes |
---|---|---|---|
id | Int | 1234 | Unique identifier |
lines | Collection (String) | ||
city | String | Dallas | |
state | String | TX | |
postalCode | String | 74206 | |
country | String | US | |
createdAt | Datetime | 2012-07-23T12:34:12Z | UTC time when this address was created. |
modifiedAt | Datetime | 2012-07-24T20:18:33Z | UTC time when this address was modified. |
Example
{
"id": 1234,
"lines": [
"123 West Main St",
"Suite 123"
],
"city": "Dallas",
"state": "TX",
"postalCode": "74206",
"country": "US",
"createdAt": "2012-07-23T12:34:12Z"
"modifiedAt": "2012-07-24T20:18:33Z"
}