POST api/userinfo/savepaymentdetails

Request Information

URI Parameters

None.

Body Parameters

PaymentDetails
NameDescriptionTypeAdditional information
Custid

string

None.

CoinName

string

None.

SenderAddress

string

None.

ReciverAddress

string

None.

Amount

string

None.

TxHash

string

None.

PaymentDate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Custid": "sample string 1",
  "CoinName": "sample string 2",
  "SenderAddress": "sample string 3",
  "ReciverAddress": "sample string 4",
  "Amount": "sample string 5",
  "TxHash": "sample string 6",
  "PaymentDate": "sample string 7"
}

application/xml, text/xml

Sample:
<PaymentDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DaveLabsAPI.Controllers">
  <Amount>sample string 5</Amount>
  <CoinName>sample string 2</CoinName>
  <Custid>sample string 1</Custid>
  <PaymentDate>sample string 7</PaymentDate>
  <ReciverAddress>sample string 4</ReciverAddress>
  <SenderAddress>sample string 3</SenderAddress>
  <TxHash>sample string 6</TxHash>
</PaymentDetails>

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 'PaymentDetails'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.