GET Notification/GetOwnerNotification?ownernotification_id={ownernotification_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ownernotification_id

integer

Required

Body Parameters

None.

Response Information

Resource Description

NotificationOwnerResponseForList
NameDescriptionTypeAdditional information
ID

integer

None.

adv_id

integer

None.

type

integer

None.

owner_id

integer

None.

renter_id

integer

None.

rent_status

integer

None.

rate

integer

None.

capacity

integer

None.

created_date

date

None.

rent_start_date

date

None.

rent_end_date

date

None.

price

decimal number

None.

title

string

None.

renter_note

string

None.

cancel_note

string

None.

renter_name

string

None.

renter_surname

string

None.

renter_email

string

None.

renter_phone

string

None.

is_renter_load_before_photo

boolean

None.

is_renter_load_after_photo

boolean

None.

is_owner_load_before_photo

boolean

None.

is_owner_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,
  "type": 1,
  "owner_id": 1,
  "renter_id": 1,
  "rent_status": 1,
  "rate": 1,
  "capacity": 1,
  "created_date": "2025-11-08T13:23:55.0762429+03:00",
  "rent_start_date": "2025-11-08T13:23:55.0762429+03:00",
  "rent_end_date": "2025-11-08T13:23:55.0762429+03:00",
  "price": 1.0,
  "title": "sample string 1",
  "renter_note": "sample string 2",
  "cancel_note": "sample string 3",
  "renter_name": "sample string 4",
  "renter_surname": "sample string 5",
  "renter_email": "sample string 6",
  "renter_phone": "sample string 7",
  "is_renter_load_before_photo": true,
  "is_renter_load_after_photo": true,
  "is_owner_load_before_photo": true,
  "is_owner_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:55.0762429+03:00"
    },
    {
      "ID": 1,
      "UserID": 1,
      "CommentedBy": 1,
      "RentID": 1,
      "Comment": "sample string 2",
      "Point": 1,
      "Status": 1,
      "CreatedDate": "2025-11-08T13:23:55.0762429+03:00"
    }
  ]
}

application/xml, text/xml

Sample:
<NotificationOwnerResponseForList 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:55.0762429+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_id>1</owner_id>
  <payment_status>true</payment_status>
  <price>1</price>
  <rate>1</rate>
  <rent_end_date>2025-11-08T13:23:55.0762429+03:00</rent_end_date>
  <rent_start_date>2025-11-08T13:23:55.0762429+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:55.0762429+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:55.0762429+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_email>sample string 6</renter_email>
  <renter_id>1</renter_id>
  <renter_name>sample string 4</renter_name>
  <renter_note>sample string 2</renter_note>
  <renter_phone>sample string 7</renter_phone>
  <renter_surname>sample string 5</renter_surname>
  <title>sample string 1</title>
  <type>1</type>
</NotificationOwnerResponseForList>