POST api/usdt/transferLunarMaticUSDT

Request Information

URI Parameters

None.

Body Parameters

TransferRequest
NameDescriptionTypeAdditional information
ToAddress

string

None.

Amount

decimal number

None.

PrivateKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ToAddress": "sample string 1",
  "Amount": 2.0,
  "PrivateKey": "sample string 3"
}

application/xml, text/xml

Sample:
<UsdtController.TransferRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Controllers">
  <Amount>2</Amount>
  <PrivateKey>sample string 3</PrivateKey>
  <ToAddress>sample string 1</ToAddress>
</UsdtController.TransferRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'TransferRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.