PUT api/residents/{residentId}/creditHistory/{residentCreditHistoryId}
Save Resident Credit History
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| residentId |
|
integer |
Required |
| residentCreditHistoryId |
|
integer |
Required |
Body Parameters
SaveResidentCreditHistoryViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CreditHistoryCodeId |
CreditHistoryCodeId |
integer |
Required Range: inclusive between 1 and 2147483647 |
| Note |
Note |
string |
Max length: 1000 |
| EffectiveDate |
EffectiveDate |
string |
Required |
| CollectionsAgentId |
CollectionsAgentId |
integer |
Range: inclusive between 0 and 2147483647 |
Request Formats
application/json, text/json
{
"creditHistoryCodeId": 1,
"note": "sample string 1",
"effectiveDate": "sample string 2",
"collectionsAgentId": 1
}
application/xml, text/xml
<SaveResidentCreditHistoryViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <CollectionsAgentId>1</CollectionsAgentId> <CreditHistoryCodeId>1</CreditHistoryCodeId> <EffectiveDate>sample string 2</EffectiveDate> <Note>sample string 1</Note> </SaveResidentCreditHistoryViewModel>
application/x-www-form-urlencoded
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.