POST api/me/userproperties/{userPropertyId}/cases/{caseId}/agencycases/{agencycaseId}/status-history
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 |
caseId |
Id of existing property case record |
integer |
Required |
agencycaseId |
Id of existing property agency case record |
integer |
Required |
Body Parameters
Instance of
NewCaseStatusBindingModelName | Description | Type | Additional information |
---|---|---|---|
AgencyCaseStatusId | integer |
Required |
|
Note | string |
Required |
|
EventDate | date |
Required |
|
AuthenticationRequired | boolean |
None. |
|
SignatureRequired | boolean |
None. |
|
DocumentsRequested | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "agencyCaseStatusId": 1, "note": "sample string 2", "eventDate": "2025-05-20T16:22:47.4034668-05:00", "authenticationRequired": true, "signatureRequired": true, "documentsRequested": true }
text/html
Sample:
{"agencyCaseStatusId":1,"note":"sample string 2","eventDate":"2025-05-20T16:22:47.4034668-05:00","authenticationRequired":true,"signatureRequired":true,"documentsRequested":true}
application/xml, text/xml
Sample:
<NewCaseStatusBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding"> <AgencyCaseStatusId>1</AgencyCaseStatusId> <AuthenticationRequired>true</AuthenticationRequired> <DocumentsRequested>true</DocumentsRequested> <EventDate>2025-05-20T16:22:47.4034668-05:00</EventDate> <Note>sample string 2</Note> <SignatureRequired>true</SignatureRequired> </NewCaseStatusBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Instance of
AgencyCaseHistoryStatusResponseModelName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Message | string |
None. |
|
AddedDate | date |
None. |
|
AgencyCaseId | integer |
None. |
|
AgencyCaseStatusId | integer |
None. |
|
UserId | integer |
None. |
|
DisplayStatus | string |
None. |
|
UserFullName | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "message": "sample string 2", "addedDate": "2025-05-20T16:22:47.4180548-05:00", "agencyCaseId": 4, "agencyCaseStatusId": 5, "userId": 6, "displayStatus": "sample string 7", "userFullName": "sample string 8" }
text/html
Sample:
{"id":1,"message":"sample string 2","addedDate":"2025-05-20T16:22:47.4180548-05:00","agencyCaseId":4,"agencyCaseStatusId":5,"userId":6,"displayStatus":"sample string 7","userFullName":"sample string 8"}
application/xml, text/xml
Sample:
<AgencyCaseHistoryStatusResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding"> <AddedDate>2025-05-20T16:22:47.4180548-05:00</AddedDate> <AgencyCaseId>4</AgencyCaseId> <AgencyCaseStatusId>5</AgencyCaseStatusId> <DisplayStatus>sample string 7</DisplayStatus> <Id>1</Id> <Message>sample string 2</Message> <UserFullName>sample string 8</UserFullName> <UserId>6</UserId> </AgencyCaseHistoryStatusResponseModel>