POST api/fundrequestusdt

Request Information

URI Parameters

None.

Body Parameters

ModFundRequest
NameDescriptionTypeAdditional information
UserId

string

None.

Amount

decimal number

None.

Address

string

None.

TranNo

string

None.

Remark

string

None.

Password

string

None.

Type

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "Amount": 2.0,
  "Address": "sample string 3",
  "TranNo": "sample string 4",
  "Remark": "sample string 5",
  "Password": "sample string 6",
  "Type": 7
}

application/xml, text/xml

Sample:
<ModFundRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TwoleafAPI.Models">
  <Address>sample string 3</Address>
  <Amount>2</Amount>
  <Password>sample string 6</Password>
  <Remark>sample string 5</Remark>
  <TranNo>sample string 4</TranNo>
  <Type>7</Type>
  <UserId>sample string 1</UserId>
</ModFundRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CommonResponse
NameDescriptionTypeAdditional 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>