POST api/me/properties/{userPropertyId}/appeals/{propertyAppealId}/logs
This method should be used to record appeal status change intiated by client for a specific appeal of a specific user property
Requires Authorization!
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userPropertyId |
User property record id |
integer |
Required |
| propertyAppealId |
Id of existing property appeal record |
integer |
Required |
Body Parameters
Instance of
CreateAppealStatusLogBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserPropertyAppealStatusId | integer |
Required |
|
| Note | string |
Required |
|
| EventDate | date |
Required |
|
| DocketNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userPropertyAppealStatusId": 1,
"note": "sample string 2",
"eventDate": "2025-11-01T05:57:49.6059703-05:00",
"docketNumber": "sample string 4"
}
text/html
Sample:
{"userPropertyAppealStatusId":1,"note":"sample string 2","eventDate":"2025-11-01T05:57:49.6059703-05:00","docketNumber":"sample string 4"}
application/xml, text/xml
Sample:
<CreateAppealStatusLogBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.AppealBinding"> <DocketNumber>sample string 4</DocketNumber> <EventDate>2025-11-01T05:57:49.6059703-05:00</EventDate> <Note>sample string 2</Note> <UserPropertyAppealStatusId>1</UserPropertyAppealStatusId> </CreateAppealStatusLogBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Instance of
UserPropertyAppealStatusLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Note | string |
None. |
|
| EventDate | date |
None. |
|
| CreatedDate | date |
None. |
|
| UserPropertyAppealStatusId | integer |
None. |
|
| UserPropertyAppealId | integer |
None. |
|
| Status | UserPropertyAppealStatus |
None. |
|
| Appeal | UserPropertyAppeal |
None. |
Response Formats
application/json
Sample:
text/json
Sample:
text/html
Sample:
application/xml
Sample:
text/xml
Sample: