POST api/me/userproperties/{userPropertyId}/cases/{caseId}/notes
This method will create a new appeal note for an active appeal
Requires Authorization!
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userPropertyId |
User property id |
integer |
Required |
| caseId |
Active appeal record id |
integer |
Required |
Body Parameters
Instance of
NewUserPropertyCaseNoteBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"content": "sample string 1"
}
text/html
Sample:
{"content":"sample string 1"}
application/xml, text/xml
Sample:
<NewUserPropertyCaseNoteBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding"> <Content>sample string 1</Content> </NewUserPropertyCaseNoteBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Instance of
UserPropertyCaseNoteResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserPropertyCaseNoteId | integer |
None. |
|
| UserPropertyCaseId | integer |
None. |
|
| UserName | string |
None. |
|
| UserId | integer |
None. |
|
| Note | string |
None. |
|
| AddedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"userPropertyCaseNoteId": 1,
"userPropertyCaseId": 2,
"userName": "sample string 3",
"userId": 4,
"note": "sample string 5",
"addedDate": "2025-11-18T08:08:46.3267683-06:00"
}
text/html
Sample:
{"userPropertyCaseNoteId":1,"userPropertyCaseId":2,"userName":"sample string 3","userId":4,"note":"sample string 5","addedDate":"2025-11-18T08:08:46.3267683-06:00"}
application/xml, text/xml
Sample:
<UserPropertyCaseNoteResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding"> <AddedDate>2025-11-18T08:08:46.3267683-06:00</AddedDate> <Note>sample string 5</Note> <UserId>4</UserId> <UserName>sample string 3</UserName> <UserPropertyCaseId>2</UserPropertyCaseId> <UserPropertyCaseNoteId>1</UserPropertyCaseNoteId> </UserPropertyCaseNoteResponseModel>