# Update an address Update records of an address object in our system In case when an address becomes a part of a created verification, then our system will create a copy of an address object and will provide you with a different in a response Endpoint: PATCH /addresses/{address_id} Security: Your API key ## Path parameters: - `address_id` (string, required) A unique identifier of an address object, that is assigned by our system after an address entity was created Example: "723f46ab04feb64f442946f2953a67eaecf7" ## Request fields (application/json): - `type` (string) A type of an address object. The possible types are: * for the residential address of a person or an affiliated person, or the registered address of a company * for the primary business location of a company * for any other address associated with a person, an affiliated person, or a company Enum: "REGISTERED", "BUSINESS", "ADDITIONAL" - `full_address` (string,null) A full address of an object, including a street address, a unit, a city, a postal code, a country - `country` (string,null) A country of an object. A two-letter country code according to ISO 3166-2 - `state` (string,null) A state of an object - `region` (string,null) A region of a country of an object - `province` (string,null) A province (a sub-region of a country) of an object - `city` (string,null) A city or a town of an object - `district` (string,null) A district (an area of a city) of an object - `address` (string,null) An address (a street name, a building number, and a unit number) of an object - `postal_code` (string,null) A postal code (zip code, postcode) of an object - `street_name` (string,null) A street name of an object - `building_number` (string,null) A number of a building of an object - `unit_number` (string,null) A number of a unit (flat, apartment) of an object ## Response 200 fields (application/json): - `address_id` (string) In case when an address becomes a part of a created verification, then our system will create a copy of an address object and provide you with a different in a response ## Response 400 fields (application/json): - `type` (string) Example: "bad_request" - `errors` (array) ## Response 500 fields (application/json): - `type` (string) Example: "internal_server" - `errors` (array)