Retrieves all the fee lists

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

feelist
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
name

Feelist Name

string

Required

Max length: 50

description

Fee list description

string

Max length: 255

is_default

is default fee list

boolean
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
db_currency_id

globally unique identifier
db_currency_code

string
db_currency_name

string
db_currency_symbol

string

Response Formats

application/json, text/json

Sample:
{
  "id": "6e9e6f84-fbef-45ef-a4d0-9f0d0f553c60",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "sales_organization_id": "f4b3949e-772b-46f8-abf1-773ac5ba3794",
  "modified_dateutc": "2026-01-11T21:01:45.1926273+00:00",
  "db_currency_id": "1bfa7885-175c-4e7e-ac53-22f988ab0658",
  "db_currency_code": "sample string 8",
  "db_currency_name": "sample string 9",
  "db_currency_symbol": "sample string 10"
}

application/xml, text/xml

Sample:
<feelist xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <db_currency_code>sample string 8</db_currency_code>
  <db_currency_id>1bfa7885-175c-4e7e-ac53-22f988ab0658</db_currency_id>
  <db_currency_name>sample string 9</db_currency_name>
  <db_currency_symbol>sample string 10</db_currency_symbol>
  <description>sample string 3</description>
  <id>6e9e6f84-fbef-45ef-a4d0-9f0d0f553c60</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T21:01:45.192Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>f4b3949e-772b-46f8-abf1-773ac5ba3794</sales_organization_id>
</feelist>