POST residentapi/alternateaddresses
Inserts new Alternate Address
Request Information
URI Parameters
None.
Body Parameters
UnitAlternateAddress| Name | Description | Type | Additional information |
|---|---|---|---|
| AddressId |
Alternate Address Id. Primary key of the units alternate addresses table. |
integer |
None. |
| PropertyId |
Property Id. See the GET residentapi/properties/{id} route to get the property data. |
integer |
None. |
| UnitId |
Unit Id. See the GET residentapi/units/{id} route to get units data |
integer |
None. |
| Address1 |
Address1 |
string |
Required |
| Address2 |
Address2 |
string |
None. |
| City |
City |
string |
Required |
| State |
State |
string |
Required |
| Zip |
Zip Code or Postal Code |
string |
Required |
| CountryCode |
CountryCode |
string |
Required |
| IsBillingAddress |
Billingaddress |
boolean |
None. |
| IsAvsVerified |
IsAvsVerified |
boolean |
None. |
| IsCareOf |
IsCareOf |
boolean |
None. |
| IsMilitary |
IsMilitary |
boolean |
None. |
Request Formats
application/json, text/json
{
"addressId": 1,
"propertyId": 2,
"unitId": 1,
"address1": "sample string 3",
"address2": "sample string 4",
"city": "sample string 5",
"state": "sample string 6",
"zip": "sample string 7",
"countryCode": "sample string 8",
"isBillingAddress": true,
"isAvsVerified": true,
"isCareOf": true,
"isMilitary": true
}
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
UnitAlternateAddress| Name | Description | Type | Additional information |
|---|---|---|---|
| AddressId |
Alternate Address Id. Primary key of the units alternate addresses table. |
integer |
None. |
| PropertyId |
Property Id. See the GET residentapi/properties/{id} route to get the property data. |
integer |
None. |
| UnitId |
Unit Id. See the GET residentapi/units/{id} route to get units data |
integer |
None. |
| Address1 |
Address1 |
string |
Required |
| Address2 |
Address2 |
string |
None. |
| City |
City |
string |
Required |
| State |
State |
string |
Required |
| Zip |
Zip Code or Postal Code |
string |
Required |
| CountryCode |
CountryCode |
string |
Required |
| IsBillingAddress |
Billingaddress |
boolean |
None. |
| IsAvsVerified |
IsAvsVerified |
boolean |
None. |
| IsCareOf |
IsCareOf |
boolean |
None. |
| IsMilitary |
IsMilitary |
boolean |
None. |
Response Formats
application/json, text/json
{
"addressId": 1,
"propertyId": 2,
"unitId": 1,
"address1": "sample string 3",
"address2": "sample string 4",
"city": "sample string 5",
"state": "sample string 6",
"zip": "sample string 7",
"countryCode": "sample string 8",
"isBillingAddress": true,
"isAvsVerified": true,
"isCareOf": true,
"isMilitary": true
}