PUT api/deals/{dealId}/properties/{propertyId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dealId | integer |
Required |
|
| propertyId | integer |
Required |
Body Parameters
AcquisitionPropertyCreateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required |
|
| Amount | decimal number |
None. |
|
| CashYield | decimal number |
None. |
|
| Street | string |
None. |
|
| City | string |
None. |
|
| State | string |
Required |
|
| PostalCode | string |
None. |
|
| Country | CountryCode |
Required |
|
| RentAmount | decimal number |
None. |
|
| ILBedsNUnits | BedCounterDTO |
None. |
|
| ALBedsNUnits | BedCounterDTO |
None. |
|
| MCBedsNUnits | BedCounterDTO |
None. |
|
| SNFBedsNUnits | BedCounterDTO |
None. |
|
| ACHBedsNUnits | BedCounterDTO |
None. |
|
| CCRCBedsNUnits | BedCounterDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Amount": 1.0,
"CashYield": 1.0,
"Street": "sample string 2",
"City": "sample string 3",
"State": "sample string 4",
"PostalCode": "sample string 5",
"Country": "USA",
"RentAmount": 1.0,
"ILBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"ALBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"MCBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"SNFBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"ACHBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"CCRCBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AcquisitionPropertyDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| AcqPropId | integer |
Required |
|
| Name | string |
Required |
|
| Amount | decimal number |
None. |
|
| CashYield | decimal number |
None. |
|
| Street | string |
None. |
|
| City | string |
None. |
|
| State | string |
Required |
|
| PostalCode | string |
None. |
|
| Country | CountryCode |
Required |
|
| RentAmount | decimal number |
None. |
|
| ILBedsNUnits | BedCounterDTO |
None. |
|
| ALBedsNUnits | BedCounterDTO |
None. |
|
| MCBedsNUnits | BedCounterDTO |
None. |
|
| SNFBedsNUnits | BedCounterDTO |
None. |
|
| ACHBedsNUnits | BedCounterDTO |
None. |
|
| CCRCBedsNUnits | BedCounterDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"AcqPropId": 1,
"Name": "sample string 2",
"Amount": 1.0,
"CashYield": 1.0,
"Street": "sample string 3",
"City": "sample string 4",
"State": "sample string 5",
"PostalCode": "sample string 6",
"Country": "USA",
"RentAmount": 1.0,
"ILBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"ALBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"MCBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"SNFBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"ACHBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
},
"CCRCBedsNUnits": {
"NoUnits": 1,
"NoLicensedBeds": 1,
"NoOperationalBeds": 1
}
}