Retrieves the fee list with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "c1fa509f-3129-4801-9db3-e2687505e9af",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "sales_organization_id": "7a1d98df-a107-4fdb-b370-aca780c0c1ad",
  "modified_dateutc": "2026-03-07T13:17:31.7415504+00:00",
  "db_currency_id": "80d767b6-a0d5-4444-b825-f3707d9860dd",
  "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>80d767b6-a0d5-4444-b825-f3707d9860dd</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>c1fa509f-3129-4801-9db3-e2687505e9af</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-03-07T13:17:31.741Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>7a1d98df-a107-4fdb-b370-aca780c0c1ad</sales_organization_id>
</feelist>