Retrieves the fee list with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The fee list id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the fee list, or 404 Not Found if it doesn't exist.

feelist
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
name

Display name of the fee list, shown when selecting a rate to apply to a job/quote.

string

Required

Max length: 50

description

Optional free-text explanation of what this fee list is for or when it should be used.

string

Max length: 255

is_default

Indicates this is the fee list applied automatically when no other fee list is explicitly selected.

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

Foreign key of the currency prices in this fee list are expressed in.

globally unique identifier
db_currency_code

ISO code of the currency (denormalized copy of the currency record).

string
db_currency_name

Display name of the currency (denormalized copy of the currency record).

string
db_currency_symbol

Display symbol of the currency (denormalized copy of the currency record).

string

Response Formats

application/json, text/json

Sample:
{
  "id": "55377537-3f6c-41a5-88af-9aadf711d073",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "sales_organization_id": "d333b07d-7dba-4d5e-86a6-83bed0c5db60",
  "modified_dateutc": "2026-09-16T11:04:32.8440971+00:00",
  "db_currency_id": "33001248-ad76-48df-be3d-7a7fe610c882",
  "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>33001248-ad76-48df-be3d-7a7fe610c882</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>55377537-3f6c-41a5-88af-9aadf711d073</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T11:04:32.844Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>d333b07d-7dba-4d5e-86a6-83bed0c5db60</sales_organization_id>
</feelist>