POST api/banktowallet
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMONEYWEBAPIFORIRMAN.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RootObject| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| data | Data1 |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"data": {
"operationId": "sample string 1",
"amount": 2,
"handoverAmount": 3,
"date": "sample string 4",
"debited": {
"actorId": "sample string 1",
"actorPreferredIdentifier": "sample string 2",
"sofId": "sample string 3",
"sofName": "sample string 4",
"delta": 5
},
"credited": {
"actorId": "sample string 1",
"actorPreferredIdentifier": "sample string 2",
"sofId": "sample string 3",
"sofName": "sample string 4",
"delta": 5
}
}
}
application/xml, text/xml
Sample:
<RootObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMONEYWEBAPIFORIRMAN.Models">
<code>1</code>
<data>
<amount>2</amount>
<credited>
<actorId>sample string 1</actorId>
<actorPreferredIdentifier>sample string 2</actorPreferredIdentifier>
<delta>5</delta>
<sofId>sample string 3</sofId>
<sofName>sample string 4</sofName>
</credited>
<date>sample string 4</date>
<debited>
<actorId>sample string 1</actorId>
<actorPreferredIdentifier>sample string 2</actorPreferredIdentifier>
<delta>5</delta>
<sofId>sample string 3</sofId>
<sofName>sample string 4</sofName>
</debited>
<handoverAmount>3</handoverAmount>
<operationId>sample string 1</operationId>
</data>
</RootObject>