POST Wallet/Transfer
Request Information
URI Parameters
None.
Body Parameters
WalletAccountTransferObj| Name | Description | Type | Additional information |
|---|---|---|---|
| FromAccountID | integer |
None. |
|
| ToAccountID | integer |
None. |
|
| Reference | string |
None. |
|
| Amount | decimal number |
None. |
|
| UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromAccountID": 1,
"ToAccountID": 2,
"Reference": "sample string 3",
"Amount": 4.0,
"UserID": 5
}
application/xml, text/xml
Sample:
<DataModalEntities.WalletAccountTransferObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mitig8API"> <Amount>4</Amount> <FromAccountID>1</FromAccountID> <Reference>sample string 3</Reference> <ToAccountID>2</ToAccountID> <UserID>5</UserID> </DataModalEntities.WalletAccountTransferObj>
application/x-www-form-urlencoded
Sample:
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. |