POST api/PaymentDetails/FundTransfer

Request Information

URI Parameters

None.

Body Parameters

FundTransferVM
NameDescriptionTypeAdditional information
PaymentDetailsId

integer

None.

UserId

integer

None.

MobileId

string

None.

InvoiceId

integer

None.

PaymentModeId

integer

None.

PaymentStatusId

integer

None.

InvoiceNumber

string

None.

PaymentMode

string

None.

PaymentStatus

string

None.

DepoAccountName

string

None.

ToAccountName

string

None.

DepoId

integer

None.

CustomerId

integer

None.

Amount

decimal number

None.

BalanceAmount

decimal number

None.

Date

date

None.

Description

string

None.

CashAccount

integer

None.

BankAccount

integer

None.

IsDeposited

boolean

None.

IsInward

boolean

None.

IsActive

boolean

None.

IsExspenseAccount

boolean

None.

InvoiceTypeId

integer

None.

IsProcessed

boolean

None.

ImageData

string

None.

ExpenseTypeId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "paymentDetailsId": 1,
  "userId": 2,
  "mobileId": "sample string 3",
  "invoiceId": 1,
  "paymentModeId": 4,
  "paymentStatusId": 5,
  "invoiceNumber": "sample string 6",
  "paymentMode": "sample string 7",
  "paymentStatus": "sample string 8",
  "depoAccountName": "sample string 9",
  "toAccountName": "sample string 10",
  "depoId": 11,
  "customerId": 1,
  "amount": 1.1,
  "balanceAmount": 1.1,
  "date": "2025-10-28T13:54:39.2934294+05:30",
  "description": "sample string 12",
  "cashAccount": 1,
  "bankAccount": 1,
  "isDeposited": true,
  "isInward": true,
  "isActive": true,
  "isExspenseAccount": true,
  "invoiceTypeId": 1,
  "isProcessed": true,
  "imageData": "sample string 18",
  "expenseTypeId": 1
}

application/xml, text/xml

Sample:
<FundTransferVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM">
  <Amount>1.1</Amount>
  <BalanceAmount>1.1</BalanceAmount>
  <BankAccount>1</BankAccount>
  <CashAccount>1</CashAccount>
  <CustomerId>1</CustomerId>
  <Date>2025-10-28T13:54:39.2934294+05:30</Date>
  <DepoAccountName>sample string 9</DepoAccountName>
  <DepoId>11</DepoId>
  <Description>sample string 12</Description>
  <ExpenseTypeId>1</ExpenseTypeId>
  <ImageData>sample string 18</ImageData>
  <InvoiceId>1</InvoiceId>
  <InvoiceNumber>sample string 6</InvoiceNumber>
  <InvoiceTypeId>1</InvoiceTypeId>
  <IsActive>true</IsActive>
  <IsDeposited>true</IsDeposited>
  <IsExspenseAccount>true</IsExspenseAccount>
  <IsInward>true</IsInward>
  <IsProcessed>true</IsProcessed>
  <MobileId>sample string 3</MobileId>
  <PaymentDetailsId>1</PaymentDetailsId>
  <PaymentMode>sample string 7</PaymentMode>
  <PaymentModeId>4</PaymentModeId>
  <PaymentStatus>sample string 8</PaymentStatus>
  <PaymentStatusId>5</PaymentStatusId>
  <ToAccountName>sample string 10</ToAccountName>
  <UserId>2</UserId>
</FundTransferVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StatusMessageVM
NameDescriptionTypeAdditional information
StatusCode

integer

None.

StatusMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": 1,
  "statusMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<StatusMessageVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM">
  <StatusCode>1</StatusCode>
  <StatusMessage>sample string 2</StatusMessage>
</StatusMessageVM>