POST api/Transaction/cashout
Request Information
URI Parameters
None.
Body Parameters
CashoutRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AgentID | integer |
None. |
|
| CurrencyCode | string |
None. |
|
| Amount | decimal number |
None. |
|
| Notes | string |
None. |
|
| Memo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AgentID": 1,
"CurrencyCode": "sample string 2",
"Amount": 3.1,
"Notes": "sample string 4",
"Memo": "sample string 5"
}
application/xml, text/xml
Sample:
<CashoutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JAD.API.Models"> <AgentID>1</AgentID> <Amount>3.1</Amount> <CurrencyCode>sample string 2</CurrencyCode> <Memo>sample string 5</Memo> <Notes>sample string 4</Notes> </CashoutRequest>
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.