PUT (update) the Physical Address for an Account
Use this method to update the organization's physical address for the Constant Contact user account. The physical address is required to send emails and displays on the footer of every email that is sent from the account. To get the current physical address, make a GET call to /account/summary/physical_address. 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. For more details, see Put (update) the Physical Address for the Account. You must have the role of Account Owner assigned to update account level details.
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"
}