Address
info
To update the "street," and "stateProvince" fields, the entire address block must be included in the update request.
Mailing Address
{
    "accountNumber": "12345678",
    "mailingAddress": {
        "country": "US",
        "street": "390 Park Avenue south",
        "city": "New York",
        "stateProvince": "NY",
        "postalCode": "10022"
    }
}
Primary Owner Legal Address
{
    "accountNumber": "12345678",
    "primaryOwner": {
        "legalAddress": {
            "country": "US",
            "street": "285 Park Avenue",
            "city": "New York",
            "stateProvince": "NY",
            "postalCode": "10022"
        }
    }
}
Associated Party Legal Address
{
  "accountNumber": "12345678",
  "associatedParties": [
    {
      "customerId": "265904693550693557",
      "role": "secondary",
      "legalAddress": {
        "country": "BG",
        "street": "193 Noyatola Moghbazar",
        "city": "Ramna",
        "postalCode": "1217"
      }
    }
  ]
}