POST api/Account/SetLenderCode
Inserts or updates the Lender code on an account
Request Information
URI Parameters
None.
Body Parameters
LenderCodeChangeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| System | string |
None. |
|
| LenderCode | string |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Account": "sample string 1",
"System": "sample string 2",
"LenderCode": "sample string 3",
"Note": "sample string 4"
}
application/xml, text/xml
Sample:
<LenderCodeChangeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestAPI.Models"> <Account>sample string 1</Account> <LenderCode>sample string 3</LenderCode> <Note>sample string 4</Note> <System>sample string 2</System> </LenderCodeChangeDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
A boolean indicating success
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.