POST api/PFSettings/UpdatePaymentBanks

Request Information

URI Parameters

None.

Body Parameters

AccountTranTypeBanksVM
NameDescriptionTypeAdditional information
BookId

integer

Required

TranType

AccountTranTypeLookup

Required

BankAccount

AccountMasterLookup

Required

ChequeDD

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BookId": 1,
  "TranType": {
    "TranTypeId": 1,
    "TranTypeName": "sample string 2"
  },
  "BankAccount": {
    "AccountId": 1,
    "AccountName": "sample string 2"
  },
  "ChequeDD": "sample string 2"
}

application/xml, text/xml

Sample:
<AccountTranTypeBanksVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <BankAccount>
    <AccountId>1</AccountId>
    <AccountName>sample string 2</AccountName>
  </BankAccount>
  <BookId>1</BookId>
  <ChequeDD>sample string 2</ChequeDD>
  <TranType>
    <TranTypeId>1</TranTypeId>
    <TranTypeName>sample string 2</TranTypeName>
  </TranType>
</AccountTranTypeBanksVM>

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.