POST Transaction/MultiTransactions?password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
password

string

Required

Body Parameters

Collection of DepositeWithDrawDTO
NameDescriptionTypeAdditional information
UserId

integer

None.

Amount

decimal number

None.

Type

string

None.

Remarks

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "UserId": 1,
    "Amount": 2.1,
    "Type": "sample string 3",
    "Remarks": "sample string 4"
  },
  {
    "UserId": 1,
    "Amount": 2.1,
    "Type": "sample string 3",
    "Remarks": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDepositeWithDrawDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FixWebApi.Models.DTO">
  <DepositeWithDrawDTO>
    <Amount>2.1</Amount>
    <Remarks>sample string 4</Remarks>
    <Type>sample string 3</Type>
    <UserId>1</UserId>
  </DepositeWithDrawDTO>
  <DepositeWithDrawDTO>
    <Amount>2.1</Amount>
    <Remarks>sample string 4</Remarks>
    <Type>sample string 3</Type>
    <UserId>1</UserId>
  </DepositeWithDrawDTO>
</ArrayOfDepositeWithDrawDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.