POST api/customer/wallet/transfer?senderId={senderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| senderId | integer |
Required |
Body Parameters
WalletTransferRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ReceiverId | integer |
None. |
|
| Amount | decimal number |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"receiverId": 1,
"amount": 2.0,
"description": "sample string 3"
}
application/xml, text/xml
Sample:
<WalletTransferRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos"> <Amount>2</Amount> <Description>sample string 3</Description> <ReceiverId>1</ReceiverId> </WalletTransferRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.