POST api/progression/lettings/{roleId}/addpayment
Add Tenant Payment Processes this lettings progression API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| roleId |
The unique identifier of the role resource. |
integer |
Required |
Body Parameters
The add tenant payment data contract supplied with the request.
AddTenantPaymentDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| PaymentType |
The payment type value. |
EnumDataContract |
None. |
| Payment |
The payment value. |
AddPaymentDataContract |
None. |
| PaymentDate |
The payment date, expressed as a date and time. |
date |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"Name": "sample string 1",
"PaymentType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Payment": {
"From": {
"PeopleGroupId": 1,
"PersonId": 2,
"FinancialAccountId": 3,
"Id": 4
},
"To": {
"PeopleGroupId": 1,
"PersonId": 2,
"FinancialAccountId": 3,
"Id": 4
},
"RoleId": 1,
"Amount": 2.1,
"Id": 3
},
"PaymentDate": "2026-08-04T23:21:47.2521262Z",
"Id": 2
}
Response Information
Resource Description
The response returned after the operation completes.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version |
The version value. |
Version |
None. |
| Content |
The content value. |
HttpContent |
None. |
| StatusCode |
The status code classification. |
HttpStatusCode |
None. |
| ReasonPhrase |
The reason phrase value. |
string |
None. |
| Headers |
The collection of headers. |
Collection of Object |
None. |
| RequestMessage |
The request message value. |
HttpRequestMessage |
None. |
| IsSuccessStatusCode |
Indicates whether this item is success status code. |
boolean |
None. |