POST api/FeeLibrary

Request Information

URI Parameters

None.

Body Parameters

FeeLibrary
NameDescriptionTypeAdditional information
Id

integer

None.

Code

string

String length: inclusive between 0 and 20

Description

string

String length: inclusive between 0 and 100

isDiscountable

boolean

None.

isPostable

boolean

None.

FeeTypeId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "code": "sample string 2",
  "description": "sample string 3",
  "isDiscountable": true,
  "isPostable": true,
  "feeTypeId": 6
}

text/html

Sample:
{"id":1,"code":"sample string 2","description":"sample string 3","isDiscountable":true,"isPostable":true,"feeTypeId":6}

application/xml, text/xml

Sample:
<FeeLibrary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Code>sample string 2</Code>
  <Description>sample string 3</Description>
  <FeeTypeId>6</FeeTypeId>
  <Id>1</Id>
  <isDiscountable>true</isDiscountable>
  <isPostable>true</isPostable>
</FeeLibrary>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.