POST api/Receipts/PostTransferToLoans
Request Information
URI Parameters
None.
Body Parameters
Transfer| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| FromAccountId | integer |
None. |
|
| ToAccountId | integer |
None. |
|
| Amount | decimal number |
None. |
|
| Reference | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"FromAccountId": 2,
"ToAccountId": 3,
"Amount": 4.0,
"Reference": "sample string 5"
}
application/xml, text/xml
Sample:
<Transfer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abacus1._8_Api.Models"> <Amount>4</Amount> <CustomerId>1</CustomerId> <FromAccountId>2</FromAccountId> <Reference>sample string 5</Reference> <ToAccountId>3</ToAccountId> </Transfer>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |