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

NameDescriptionTypeAdditional information
userPropertyId

User property id

integer

Required

caseId

Active appeal record id

integer

Required

Body Parameters

Instance of

NewUserPropertyCaseNoteBindingModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'NewUserPropertyCaseNoteBindingModel'.

Response Information

Resource Description

Instance of

UserPropertyCaseNoteResponseModel
NameDescriptionTypeAdditional 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-05-20T14:40:18.4536455-05:00"
}

text/html

Sample:
{"userPropertyCaseNoteId":1,"userPropertyCaseId":2,"userName":"sample string 3","userId":4,"note":"sample string 5","addedDate":"2025-05-20T14:40:18.4536455-05: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-05-20T14:40:18.4536455-05:00</AddedDate>
  <Note>sample string 5</Note>
  <UserId>4</UserId>
  <UserName>sample string 3</UserName>
  <UserPropertyCaseId>2</UserPropertyCaseId>
  <UserPropertyCaseNoteId>1</UserPropertyCaseNoteId>
</UserPropertyCaseNoteResponseModel>