POST api/BookFixedDeposit

Request Information

URI Parameters

None.

Body Parameters

CreateFixedDepositRequest
NameDescriptionTypeAdditional information
IsDiscountDeposit

boolean

None.

InterestRate

decimal number

None.

Amount

string

None.

Tenure

integer

None.

CustomerID

string

None.

AccountOfficerID

integer

None.

Referee1CustomerID

string

None.

Referee2CustomerID

string

None.

ProductCode

string

None.

LiquidationAccount

string

None.

ApplyInterestMonthly

boolean

None.

ApplyInterestOnRollOver

boolean

None.

ShouldRollOver

boolean

None.

RequestType

string

None.

Status

string

None.

InvestmentName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IsDiscountDeposit": true,
  "InterestRate": 2.1,
  "Amount": "sample string 3",
  "Tenure": 4,
  "CustomerID": "sample string 5",
  "AccountOfficerID": 6,
  "Referee1CustomerID": "sample string 7",
  "Referee2CustomerID": "sample string 8",
  "ProductCode": "sample string 9",
  "LiquidationAccount": "sample string 10",
  "ApplyInterestMonthly": true,
  "ApplyInterestOnRollOver": true,
  "ShouldRollOver": true,
  "RequestType": "sample string 14",
  "Status": "sample string 15",
  "InvestmentName": "sample string 16"
}

application/xml, text/xml

Sample:
<CreateFixedDepositRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SofriInvestAPI.Data.Model.DTO">
  <AccountOfficerID>6</AccountOfficerID>
  <Amount>sample string 3</Amount>
  <ApplyInterestMonthly>true</ApplyInterestMonthly>
  <ApplyInterestOnRollOver>true</ApplyInterestOnRollOver>
  <CustomerID>sample string 5</CustomerID>
  <InterestRate>2.1</InterestRate>
  <InvestmentName>sample string 16</InvestmentName>
  <IsDiscountDeposit>true</IsDiscountDeposit>
  <LiquidationAccount>sample string 10</LiquidationAccount>
  <ProductCode>sample string 9</ProductCode>
  <Referee1CustomerID>sample string 7</Referee1CustomerID>
  <Referee2CustomerID>sample string 8</Referee2CustomerID>
  <RequestType>sample string 14</RequestType>
  <ShouldRollOver>true</ShouldRollOver>
  <Status>sample string 15</Status>
  <Tenure>4</Tenure>
</CreateFixedDepositRequest>

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.