Hi,
I use the API to create a contact and set its billing address.
I want to set the short state name, but keep automatically converts it to the full one.
How can I keep the state name short?
addresses = new List<object>()
{
new
{
line1 = model.AddressLine1,
line2 = model.AddressLine2,
locality = model.City,
postal_code = model.ZipCode,
country_code = "USA",
region_code = $"US-{model.STATE}",
field = "BILLING"
}
},