POST api/Payout/Transaction

payout Transaction Pass APIkey|tnxpassword|CompanyID In Header Values

Request Information

URI Parameters

None.

Body Parameters

ClsPayoutRequest
NameDescriptionTypeAdditional information
AccountMobile

string

None.

AccountName

string

None.

AccountNo

string

None.

AccountIfsc

string

None.

BankName

string

None.

Amount

decimal number

None.

AgentTrasID

string

None.

Status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountMobile": "sample string 1",
  "AccountName": "sample string 2",
  "AccountNo": "sample string 3",
  "AccountIfsc": "sample string 4",
  "BankName": "sample string 5",
  "Amount": 6.0,
  "AgentTrasID": "sample string 7",
  "Status": "sample string 8"
}

application/xml, text/xml

Sample:
<ClsPayoutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL">
  <AccountIfsc>sample string 4</AccountIfsc>
  <AccountMobile>sample string 1</AccountMobile>
  <AccountName>sample string 2</AccountName>
  <AccountNo>sample string 3</AccountNo>
  <AgentTrasID>sample string 7</AgentTrasID>
  <Amount>6</Amount>
  <BankName>sample string 5</BankName>
  <Status>sample string 8</Status>
</ClsPayoutRequest>

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

Response Information

Resource Description

clsPayoutResponce
NameDescriptionTypeAdditional information
Error

boolean

None.

ErrorCode

string

None.

Message

string

None.

Data

ClsPayoutTransactionresponce

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": true,
  "ErrorCode": "sample string 2",
  "Message": "sample string 3",
  "Data": {
    "AccountName": "sample string 1",
    "AccountNo": "sample string 2",
    "AccountIfsc": "sample string 3",
    "BankName": "sample string 4",
    "Amount": 5.0,
    "Surcharge": 6.0,
    "Total": 7.0,
    "TransID": "sample string 8",
    "AgentTrasID": "sample string 9",
    "Status": "sample string 10",
    "StatusCode": "sample string 11",
    "Bankrrn": "sample string 12",
    "AddDate": "2025-10-28T02:11:36.7000475+05:30"
  }
}

application/xml, text/xml

Sample:
<clsPayoutResponce xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL">
  <Data>
    <AccountIfsc>sample string 3</AccountIfsc>
    <AccountName>sample string 1</AccountName>
    <AccountNo>sample string 2</AccountNo>
    <AddDate>2025-10-28T02:11:36.7000475+05:30</AddDate>
    <AgentTrasID>sample string 9</AgentTrasID>
    <Amount>5</Amount>
    <BankName>sample string 4</BankName>
    <Bankrrn>sample string 12</Bankrrn>
    <Status>sample string 10</Status>
    <StatusCode>sample string 11</StatusCode>
    <Surcharge>6</Surcharge>
    <Total>7</Total>
    <TransID>sample string 8</TransID>
  </Data>
  <Error>true</Error>
  <ErrorCode>sample string 2</ErrorCode>
  <Message>sample string 3</Message>
</clsPayoutResponce>