POST api/DBA/GetPetsAllowed
Request Information
URI Parameters
None.
Body Parameters
LeasePriceParamsName | Description | Type | Additional information |
---|---|---|---|
unitId | integer |
None. |
|
dbaId | integer |
None. |
|
leaseDate | date |
None. |
|
availableDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "unitId": 1, "dbaId": 1, "leaseDate": "2025-07-06T04:28:22.6371542-05:00", "availableDate": "2025-07-06T04:28:22.6371542-05:00" }
application/xml, text/xml
Sample:
<LeasePriceParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Models"> <availableDate>2025-07-06T04:28:22.6371542-05:00</availableDate> <dbaId>1</dbaId> <leaseDate>2025-07-06T04:28:22.6371542-05:00</leaseDate> <unitId>1</unitId> </LeasePriceParams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ListofPetsModelName | Description | Type | Additional information |
---|---|---|---|
Pets | Collection of PetsAllowedModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Pets": [ { "ProspectId": 1, "ProspectQuoteId": 1, "DBAPetTypeId": 1, "DBAPetType": "sample string 1", "Quantity": 1, "NonRefundableFee": 1.0, "DepositAmount": 1.0, "MonthlyRent": 1.0 }, { "ProspectId": 1, "ProspectQuoteId": 1, "DBAPetTypeId": 1, "DBAPetType": "sample string 1", "Quantity": 1, "NonRefundableFee": 1.0, "DepositAmount": 1.0, "MonthlyRent": 1.0 } ] }
application/xml, text/xml
Sample:
<ListofPetsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.YottaResident.WebAPIs.Models"> <Pets> <PetsAllowedModel> <DBAPetType>sample string 1</DBAPetType> <DBAPetTypeId>1</DBAPetTypeId> <DepositAmount>1</DepositAmount> <MonthlyRent>1</MonthlyRent> <NonRefundableFee>1</NonRefundableFee> <ProspectId>1</ProspectId> <ProspectQuoteId>1</ProspectQuoteId> <Quantity>1</Quantity> </PetsAllowedModel> <PetsAllowedModel> <DBAPetType>sample string 1</DBAPetType> <DBAPetTypeId>1</DBAPetTypeId> <DepositAmount>1</DepositAmount> <MonthlyRent>1</MonthlyRent> <NonRefundableFee>1</NonRefundableFee> <ProspectId>1</ProspectId> <ProspectQuoteId>1</ProspectQuoteId> <Quantity>1</Quantity> </PetsAllowedModel> </Pets> </ListofPetsModel>