Retrieves all the fee lists
Request Information
URI Parameters :
None.
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": "98185d14-ce4b-4240-929f-eef86c5d8123",
"name": "sample string 2",
"description": "sample string 3",
"is_default": true,
"sales_organization_id": "197fae1f-dc0d-4572-88fd-2967df054fd3",
"modified_dateutc": "2026-06-16T21:18:14.8547835+00:00",
"db_currency_id": "9b38c8ab-4b92-433d-9534-a321bd99585a",
"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>9b38c8ab-4b92-433d-9534-a321bd99585a</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>98185d14-ce4b-4240-929f-eef86c5d8123</id> <is_default>true</is_default> <modified_dateutc>2026-06-16T21:18:14.854Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>197fae1f-dc0d-4572-88fd-2967df054fd3</sales_organization_id> </feelist>