POST api/Online?MerchantId={MerchantId}&Amount={Amount}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| MerchantId | integer |
Required |
|
| Amount | decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
StripeTransferResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| TransferId | string |
None. |
|
| TransferredAmount | string |
None. |
|
| StripeAccountId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"TransferId": "sample string 3",
"TransferredAmount": "sample string 4",
"StripeAccountId": "sample string 5"
}
application/xml, text/xml
Sample:
<StripeTransferResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LP.WebAPI.Models"> <Message>sample string 2</Message> <StripeAccountId>sample string 5</StripeAccountId> <Success>true</Success> <TransferId>sample string 3</TransferId> <TransferredAmount>sample string 4</TransferredAmount> </StripeTransferResult>