GET GetForwardAddressByApplicantId/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ForwardAddressModel
NameDescriptionTypeAdditional information
tenantForwardAddressId

integer

None.

tenantUnitId

integer

None.

applicantId

integer

None.

addressLine1

string

None.

addressLine2

string

None.

city

string

None.

stateId

integer

None.

zip

string

None.

checkBillingAddress

boolean

None.

lastUpdatedBy

integer

None.

lastUpdatedByName

string

None.

lastUpdatedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "tenantForwardAddressId": 1,
  "tenantUnitId": 1,
  "applicantId": 1,
  "addressLine1": "sample string 1",
  "addressLine2": "sample string 2",
  "city": "sample string 3",
  "stateId": 1,
  "zip": "sample string 4",
  "checkBillingAddress": true,
  "lastUpdatedBy": 1,
  "lastUpdatedByName": "sample string 5",
  "lastUpdatedDate": "2025-07-05T15:10:42.1738835-05:00"
}

application/xml, text/xml

Sample:
<ForwardAddressModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Services">
  <addressLine1>sample string 1</addressLine1>
  <addressLine2>sample string 2</addressLine2>
  <applicantId>1</applicantId>
  <checkBillingAddress>true</checkBillingAddress>
  <city>sample string 3</city>
  <lastUpdatedBy>1</lastUpdatedBy>
  <lastUpdatedByName>sample string 5</lastUpdatedByName>
  <lastUpdatedDate>2025-07-05T15:10:42.1738835-05:00</lastUpdatedDate>
  <stateId>1</stateId>
  <tenantForwardAddressId>1</tenantForwardAddressId>
  <tenantUnitId>1</tenantUnitId>
  <zip>sample string 4</zip>
</ForwardAddressModel>