POST api/v1/product/create-biller-product-fee

Request Information

URI Parameters

None.

Body Parameters

CreateBillerProductFeeRequest
NameDescriptionTypeAdditional information
ProductId

integer

None.

FeeName

string

None.

AccountNumber

string

None.

FeeAmount

decimal number

None.

IsPercentage

boolean

None.

IsInclusive

boolean

None.

NarrationPrefix

string

None.

MinimumAmount

decimal number

None.

MaximumAmount

decimal number

None.

FeeChargeTypeId

integer

None.

SplitChargeOnFeeId

integer

None.

CreatedBy

string

None.

RequestId

string

Required

Matching regular expression pattern: (^(?=.{4,50}$)([ A-Za-z0-9.|/-]+$))

CountryId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductId": 1,
  "FeeName": "sample string 2",
  "AccountNumber": "sample string 3",
  "FeeAmount": 4.0,
  "IsPercentage": true,
  "IsInclusive": true,
  "NarrationPrefix": "sample string 7",
  "MinimumAmount": 8.0,
  "MaximumAmount": 9.0,
  "FeeChargeTypeId": 10,
  "SplitChargeOnFeeId": 11,
  "CreatedBy": "sample string 12",
  "RequestId": "sample string 13",
  "CountryId": "sample string 14"
}

application/xml, text/xml

Sample:
<CreateBillerProductFeeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FirstBank.SingleBiller.CoreObject.DataTransferObjects">
  <CountryId>sample string 14</CountryId>
  <RequestId>sample string 13</RequestId>
  <AccountNumber>sample string 3</AccountNumber>
  <CreatedBy>sample string 12</CreatedBy>
  <FeeAmount>4</FeeAmount>
  <FeeChargeTypeId>10</FeeChargeTypeId>
  <FeeName>sample string 2</FeeName>
  <IsInclusive>true</IsInclusive>
  <IsPercentage>true</IsPercentage>
  <MaximumAmount>9</MaximumAmount>
  <MinimumAmount>8</MinimumAmount>
  <NarrationPrefix>sample string 7</NarrationPrefix>
  <ProductId>1</ProductId>
  <SplitChargeOnFeeId>11</SplitChargeOnFeeId>
</CreateBillerProductFeeRequest>

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.