Retrieves the fee list with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
feelist| Name | Description | Type | Additional 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": "dad07e83-81a1-455a-b7b0-55c3d913a7bd",
"name": "sample string 2",
"description": "sample string 3",
"is_default": true,
"sales_organization_id": "e2827633-4d46-45bd-b0ed-169c383b5a16",
"modified_dateutc": "2026-06-16T21:24:50.2379204+00:00",
"db_currency_id": "b70f6583-6099-48b8-b992-b4dec1444516",
"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>b70f6583-6099-48b8-b992-b4dec1444516</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>dad07e83-81a1-455a-b7b0-55c3d913a7bd</id> <is_default>true</is_default> <modified_dateutc>2026-06-16T21:24:50.237Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>e2827633-4d46-45bd-b0ed-169c383b5a16</sales_organization_id> </feelist>