POST api/withdraw
Request Information
URI Parameters
None.
Body Parameters
ModWithdraw| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| Amount | decimal number |
None. |
|
| BEP20Address | string |
None. |
|
| Password | string |
None. |
|
| otp | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"Amount": 2.0,
"BEP20Address": "sample string 3",
"Password": "sample string 4",
"otp": 5
}
application/xml, text/xml
Sample:
<ModWithdraw xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TwoleafAPI.Models"> <Amount>2</Amount> <BEP20Address>sample string 3</BEP20Address> <Password>sample string 4</Password> <UserId>sample string 1</UserId> <otp>5</otp> </ModWithdraw>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CommonResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Payload | Object |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Payload": {},
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<CommonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TwoleafAPI.Models"> <Message>sample string 3</Message> <Payload /> <Status>sample string 1</Status> </CommonResponse>