GET api/me/properties/{userPropertyId}/appeals/{propertyAppealId}/logs

This method should be used to retrieve status logs for a specific user property and property appeal

Requires Authorization!

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userPropertyId

User property record id

integer

Required

propertyAppealId

Id of existing property appeal record

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of

Collection of UserPropertyAppealStatusChangeLogModel
NameDescriptionTypeAdditional information
Id

integer

None.

UserPropertyAppealId

integer

None.

UserPropertyAppealStatusId

integer

None.

DisplayStatus

string

None.

Note

string

None.

CreatedDate

date

None.

EventDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "userPropertyAppealId": 1,
    "userPropertyAppealStatusId": 1,
    "displayStatus": "sample string 2",
    "note": "sample string 3",
    "createdDate": "2025-05-20T16:45:53.9827862-05:00",
    "eventDate": "2025-05-20T16:45:53.98488-05:00"
  },
  {
    "id": 1,
    "userPropertyAppealId": 1,
    "userPropertyAppealStatusId": 1,
    "displayStatus": "sample string 2",
    "note": "sample string 3",
    "createdDate": "2025-05-20T16:45:53.9827862-05:00",
    "eventDate": "2025-05-20T16:45:53.98488-05:00"
  }
]

text/html

Sample:
[{"id":1,"userPropertyAppealId":1,"userPropertyAppealStatusId":1,"displayStatus":"sample string 2","note":"sample string 3","createdDate":"2025-05-20T16:45:53.9827862-05:00","eventDate":"2025-05-20T16:45:53.98488-05:00"},{"id":1,"userPropertyAppealId":1,"userPropertyAppealStatusId":1,"displayStatus":"sample string 2","note":"sample string 3","createdDate":"2025-05-20T16:45:53.9827862-05:00","eventDate":"2025-05-20T16:45:53.98488-05:00"}]

application/xml, text/xml

Sample:
<ArrayOfUserPropertyAppealStatusChangeLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos.Appeal">
  <UserPropertyAppealStatusChangeLogModel>
    <CreatedDate>2025-05-20T16:45:53.9827862-05:00</CreatedDate>
    <DisplayStatus>sample string 2</DisplayStatus>
    <EventDate>2025-05-20T16:45:53.98488-05:00</EventDate>
    <Id>1</Id>
    <Note>sample string 3</Note>
    <UserPropertyAppealId>1</UserPropertyAppealId>
    <UserPropertyAppealStatusId>1</UserPropertyAppealStatusId>
  </UserPropertyAppealStatusChangeLogModel>
  <UserPropertyAppealStatusChangeLogModel>
    <CreatedDate>2025-05-20T16:45:53.9827862-05:00</CreatedDate>
    <DisplayStatus>sample string 2</DisplayStatus>
    <EventDate>2025-05-20T16:45:53.98488-05:00</EventDate>
    <Id>1</Id>
    <Note>sample string 3</Note>
    <UserPropertyAppealId>1</UserPropertyAppealId>
    <UserPropertyAppealStatusId>1</UserPropertyAppealStatusId>
  </UserPropertyAppealStatusChangeLogModel>
</ArrayOfUserPropertyAppealStatusChangeLogModel>