POST api/me/properties/{userPropertyId}/appeals/{propertyAppealId}/documents?documentTypeId={documentTypeId}
This method should be used to upload document for an active appeal for a user property
Requires Authorization!
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userPropertyId |
User property record id |
integer |
Required |
| propertyAppealId |
Acive appeal record id |
integer |
Required |
| documentTypeId |
Target document type id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Instance of
UploadAppealDocumentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserPropertyAppealId | integer |
None. |
|
| UploadDocumentTypeId | integer |
None. |
|
| UploadDocumentType | string |
None. |
|
| Name | string |
None. |
|
| FilePath | string |
None. |
|
| OwnerUserId | integer |
None. |
|
| OwnerFullName | string |
None. |
|
| OwnerRoleId | integer |
None. |
|
| UploadDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"userPropertyAppealId": 2,
"uploadDocumentTypeId": 3,
"uploadDocumentType": "sample string 4",
"name": "sample string 5",
"filePath": "sample string 6",
"ownerUserId": 7,
"ownerFullName": "sample string 8",
"ownerRoleId": 9,
"uploadDate": "2025-11-01T05:55:57.383831-05:00"
}
text/html
Sample:
{"id":1,"userPropertyAppealId":2,"uploadDocumentTypeId":3,"uploadDocumentType":"sample string 4","name":"sample string 5","filePath":"sample string 6","ownerUserId":7,"ownerFullName":"sample string 8","ownerRoleId":9,"uploadDate":"2025-11-01T05:55:57.383831-05:00"}
application/xml, text/xml
Sample:
<UploadAppealDocumentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos.Appeal"> <FilePath>sample string 6</FilePath> <Id>1</Id> <Name>sample string 5</Name> <OwnerFullName>sample string 8</OwnerFullName> <OwnerRoleId>9</OwnerRoleId> <OwnerUserId>7</OwnerUserId> <UploadDate>2025-11-01T05:55:57.383831-05:00</UploadDate> <UploadDocumentType>sample string 4</UploadDocumentType> <UploadDocumentTypeId>3</UploadDocumentTypeId> <UserPropertyAppealId>2</UserPropertyAppealId> </UploadAppealDocumentModel>