An Address represents a billing address that can be associated to a Card, Customer, or Transaction.
Properties
Property | Type | Description | Example |
---|---|---|---|
id | Number (integer) | A read-only unique identifier. | 1234567890 |
address | String | Street address. | "1234 Test Street S." |
city | String | The city for the address. | "Test City" |
state | String | The state code for the address. | "CA" |
postal | Number (integer) | The zip code for the address. | 50001 |
Example
{
"id": 1234567890,
"address": "1234 Test Street S.",
"city": "Test City",
"state": "CA",
"postal": 50001
}