Propertyware · Schema
SaveOwnerContribution
Charge for request
Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports
Properties
| Name | Type | Description |
|---|---|---|
| amount | number | Amount. |
| comments | string | Comments. |
| contactID | integer | Id of the contact associated with this owner contribution. |
| date | string | Post Date. |
| destinationAccountID | integer | Id of the bank account where the payment will be deposited. |
| glAccountID | integer | Id of the general ledger account associated with this owner contribution. |
| paymentType | string | Payment Type. |
| portfolioID | integer | Id of the portfolio to apply the payment to. |
| refNo | string | Reference No. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SaveOwnerContribution",
"description": "Charge for request",
"type": "object",
"required": [
"amount",
"contactID",
"date",
"destinationAccountID",
"glAccountID",
"paymentType",
"portfolioID",
"refNo"
],
"properties": {
"amount": {
"type": "number",
"format": "double",
"description": "Amount."
},
"comments": {
"type": "string",
"description": "Comments."
},
"contactID": {
"type": "integer",
"format": "int64",
"description": "Id of the contact associated with this owner contribution."
},
"date": {
"type": "string",
"format": "date",
"description": "Post Date."
},
"destinationAccountID": {
"type": "integer",
"format": "int64",
"description": "Id of the bank account where the payment will be deposited."
},
"glAccountID": {
"type": "integer",
"format": "int64",
"description": "Id of the general ledger account associated with this owner contribution."
},
"paymentType": {
"type": "string",
"description": "Payment Type.",
"enum": [
"CHECK",
"CHECK21",
"CASHIERS_CHECK",
"CREDIT_CARD",
"CASH",
"MONEY_ORDER",
"OTHER",
"CLICKPAY",
"SECTION8",
"EPAY",
"ECHECK",
"NACHA",
"RENTMONEY",
"PUBLIC_ASSISTANCE",
"PAYMENT_TYPE_NA"
]
},
"portfolioID": {
"type": "integer",
"format": "int64",
"description": "Id of the portfolio to apply the payment to."
},
"refNo": {
"type": "string",
"description": "Reference No."
}
}
}