bitbankapi class : RequestWithdrawal(string,string,string,string,string) method
Description
Requests withdrawal.
Syntax
bitbankapiInstance.RequestWithdrawal(string asset, string uuid, string amount, string otptoken, string smstoken)
Arguments
Class | Name | Description |
string | asset | Asset name. |
string | uuid | The uuid of the withdrawal account. |
string | amount | Withdrawal amount. |
string | otptoken | Authentication token. |
string | smstoken | Authentication token. |
Return value
Class | Description |
bitbankres | Response to request, with JSON-text. |
Sample code
1: | string apiKey = "3622c294-zs5m-587w-vv7j-sdf454h1sdbl"; |
2: | string secretKey = "4be789k3-dd7r-9d23-jy45-qng4c83hjk1g"; |
3: | bitbankapi bitbankapiIns = new bitbankapi(apiKey, secretKey); |
4: | bitbankres bitbankresIns = bitbankapiIns.RequestWithdrawal("btc", "xxxx", "0.1", "", ""); |
5: | string jsonStr = bitbankresIns.Result; |
Example for JSON-text
None.
Notes
Private API. API key and secret key are necessary.
Valid first argument : btc, xrp, ltc, eth, mona, bcc
If the fourth or fifth arguments are not required, please specify an empty string, and the argument will be ignored.
An instance of the bitbankres class is returned as the response to the request. This instance holds the JSON-text of the result of the response.
If the argument is incorrect, the following JSON-text will be returned.
{"success":0,"data":{"code":xxxxx}}
The "code" is a different number for each error.
If an HTTP error occurs, the following JSON-text will be returned.
{"success": -1000,"error": { "statuscode" : 404, "message": "Not Found"}}
"statuscode" and "message" are different for each HTTP error.
If the request times out, the following JSON-text is returned.
{"success": -1001,"error": { "typename" : "TaskCanceledException", "message": "A task was cancelled."}}
If the request fails due to other exceptions, the following JSON-text will be returned.
{"success": -1002,"error": { "typename" : "...", "message": "..."}}
"typename" and "message" are different for each exception.