POST developer/chargecard
Request Information
URI Parameters
None.
Body Parameters
CardRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| source | Source |
None. |
|
| amount | integer |
None. |
|
| currency | string |
None. |
|
| reference | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"source": {
"type": "sample string 1",
"number": "sample string 2",
"expiry_month": 3,
"expiry_year": 4,
"cvv": "sample string 5"
},
"amount": 1,
"currency": "sample string 2",
"reference": "sample string 3"
}
application/xml, text/xml
Sample:
<CardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SendMoney.DataObjects">
<amount>1</amount>
<currency>sample string 2</currency>
<reference>sample string 3</reference>
<source>
<cvv>sample string 5</cvv>
<expiry_month>3</expiry_month>
<expiry_year>4</expiry_year>
<number>sample string 2</number>
<type>sample string 1</type>
</source>
</CardRequest>
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.