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": "a87a0cb4-28b4-4353-a3fe-e894d8b7b2d6",
"name": "sample string 2",
"description": "sample string 3",
"is_default": true,
"sales_organization_id": "b94a607b-a804-4545-a30f-4c5bbb556a00",
"modified_dateutc": "2026-01-11T23:56:14.81118+00:00",
"db_currency_id": "309e0603-f067-4272-9869-ac01db860b9d",
"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>309e0603-f067-4272-9869-ac01db860b9d</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>a87a0cb4-28b4-4353-a3fe-e894d8b7b2d6</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T23:56:14.811Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>b94a607b-a804-4545-a30f-4c5bbb556a00</sales_organization_id> </feelist>