Account Services
POST the Physical Address for the Account
Use this method to add the address where the account's organization physically resides. The physical address is required to send emails and displays on the footer of every email that is sent from the account. The country (<code>country_code</code>) where the account organization resides determines whether you use the <code>state_code</code> to specify United States (<code>US</code>) and Canada (<code>CA</code>) addresses, or use the <code>state_name</code> to specify all other countries.
post/account/summary/physical_address
Request body
Example request
{
"address_line1": "123 Maple Street",
"address_line2": "Unit 1",
"address_line3": "Apartment 234",
"city": "Boston",
"state_code": "MA",
"state_name": "EXCLUDE if country_code is US.",
"postal_code": "02451",
"country_code": "US"
}Response
Request successful
Example response
{
"address_line1": "123 Maple Street",
"address_line2": "Unit 1",
"address_line3": "Apartment 234",
"city": "Boston",
"state_code": "MA",
"state_name": "EXCLUDE if country_code is US.",
"postal_code": "02451",
"country_code": "US"
}