Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of fee categories.

Collection of Pico.FeeCategory
NameDescriptionTypeAdditional information
description

Gets or sets the description.

string

None.

isActive

Gets or sets a value indicating whether fee type is active.

boolean

None.

id

Gets or sets the fee category identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "description": "sample String 1",
    "isActive": true,
    "id": "3"
  },
  {
    "description": "sample String 1",
    "isActive": true,
    "id": "3"
  }
]

text/html

Sample:
[{"description":"sample String 1","isActive":true,"id":"3"},{"description":"sample String 1","isActive":true,"id":"3"}]

application/xml, text/xml

Sample:
<ArrayOfFeeCategory xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FeeCategory>
    <Description>sample String 1</Description>
    <IsActive>true</IsActive>
    <FeeCategoryId>3</FeeCategoryId>
  </FeeCategory>
  <FeeCategory>
    <Description>sample String 1</Description>
    <IsActive>true</IsActive>
    <FeeCategoryId>3</FeeCategoryId>
  </FeeCategory>
</ArrayOfFeeCategory>