GET Notification/GetRentNotification?rentnotification_id={rentnotification_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| rentnotification_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NotificationRenterResponseForList| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| adv_id | integer |
None. |
|
| owner_id | integer |
None. |
|
| renter_id | integer |
None. |
|
| rent_status | integer |
None. |
|
| rate | integer |
None. |
|
| capacity | integer |
None. |
|
| title | string |
None. |
|
| created_date | date |
None. |
|
| rent_start_date | date |
None. |
|
| rent_end_date | date |
None. |
|
| price | decimal number |
None. |
|
| renter_note | string |
None. |
|
| cancel_note | string |
None. |
|
| owner_name | string |
None. |
|
| owner_surname | string |
None. |
|
| owner_email | string |
None. |
|
| owner_phone | string |
None. |
|
| is_owner_load_before_photo | boolean |
None. |
|
| is_owner_load_after_photo | boolean |
None. |
|
| is_renter_load_before_photo | boolean |
None. |
|
| is_renter_load_after_photo | boolean |
None. |
|
| payment_status | boolean |
None. |
|
| renterComment | Collection of RenterComments |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"adv_id": 1,
"owner_id": 1,
"renter_id": 1,
"rent_status": 1,
"rate": 1,
"capacity": 1,
"title": "sample string 1",
"created_date": "2025-11-08T13:23:13.5745362+03:00",
"rent_start_date": "2025-11-08T13:23:13.5745362+03:00",
"rent_end_date": "2025-11-08T13:23:13.5745362+03:00",
"price": 1.0,
"renter_note": "sample string 2",
"cancel_note": "sample string 3",
"owner_name": "sample string 4",
"owner_surname": "sample string 5",
"owner_email": "sample string 6",
"owner_phone": "sample string 7",
"is_owner_load_before_photo": true,
"is_owner_load_after_photo": true,
"is_renter_load_before_photo": true,
"is_renter_load_after_photo": true,
"payment_status": true,
"renterComment": [
{
"ID": 1,
"UserID": 1,
"CommentedBy": 1,
"RentID": 1,
"Comment": "sample string 2",
"Point": 1,
"Status": 1,
"CreatedDate": "2025-11-08T13:23:13.5901524+03:00"
},
{
"ID": 1,
"UserID": 1,
"CommentedBy": 1,
"RentID": 1,
"Comment": "sample string 2",
"Point": 1,
"Status": 1,
"CreatedDate": "2025-11-08T13:23:13.5901524+03:00"
}
]
}
application/xml, text/xml
Sample:
<NotificationRenterResponseForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentekerAPIProject.Controllers">
<ID>1</ID>
<adv_id>1</adv_id>
<cancel_note>sample string 3</cancel_note>
<capacity>1</capacity>
<created_date>2025-11-08T13:23:13.5745362+03:00</created_date>
<is_owner_load_after_photo>true</is_owner_load_after_photo>
<is_owner_load_before_photo>true</is_owner_load_before_photo>
<is_renter_load_after_photo>true</is_renter_load_after_photo>
<is_renter_load_before_photo>true</is_renter_load_before_photo>
<owner_email>sample string 6</owner_email>
<owner_id>1</owner_id>
<owner_name>sample string 4</owner_name>
<owner_phone>sample string 7</owner_phone>
<owner_surname>sample string 5</owner_surname>
<payment_status>true</payment_status>
<price>1</price>
<rate>1</rate>
<rent_end_date>2025-11-08T13:23:13.5745362+03:00</rent_end_date>
<rent_start_date>2025-11-08T13:23:13.5745362+03:00</rent_start_date>
<rent_status>1</rent_status>
<renterComment xmlns:d2p1="http://schemas.datacontract.org/2004/07/RentekerAPIProject">
<d2p1:RenterComments>
<d2p1:Comment>sample string 2</d2p1:Comment>
<d2p1:CommentedBy>1</d2p1:CommentedBy>
<d2p1:CreatedDate>2025-11-08T13:23:13.5901524+03:00</d2p1:CreatedDate>
<d2p1:ID>1</d2p1:ID>
<d2p1:Point>1</d2p1:Point>
<d2p1:RentID>1</d2p1:RentID>
<d2p1:Status>1</d2p1:Status>
<d2p1:UserID>1</d2p1:UserID>
</d2p1:RenterComments>
<d2p1:RenterComments>
<d2p1:Comment>sample string 2</d2p1:Comment>
<d2p1:CommentedBy>1</d2p1:CommentedBy>
<d2p1:CreatedDate>2025-11-08T13:23:13.5901524+03:00</d2p1:CreatedDate>
<d2p1:ID>1</d2p1:ID>
<d2p1:Point>1</d2p1:Point>
<d2p1:RentID>1</d2p1:RentID>
<d2p1:Status>1</d2p1:Status>
<d2p1:UserID>1</d2p1:UserID>
</d2p1:RenterComments>
</renterComment>
<renter_id>1</renter_id>
<renter_note>sample string 2</renter_note>
<title>sample string 1</title>
</NotificationRenterResponseForList>