Retrieves all db report types, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of db report types.
db_report_type| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name |
string | |
| description |
Description |
string | |
| date_start_visible |
Date and time from which this report type becomes visible/usable. |
date | |
| date_end_visible |
Date and time until which this report type remains visible/usable. |
date | |
| sales_organization_id |
Sale organization id |
globally unique identifier | |
| template |
Using for PCL pdf preview |
string | |
| is_mandatory |
is_mandatory |
boolean | |
| status |
Current status of this report type definition. |
string | |
| print_options |
Serialized print/rendering options applied when generating this report. |
string | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "d8563305-8da7-4006-92f5-6931f336be68",
"name": "sample string 2",
"description": "sample string 3",
"date_start_visible": "2026-09-16T10:12:39.3152595+00:00",
"date_end_visible": "2026-09-16T10:12:39.3152595+00:00",
"sales_organization_id": "ddbc0fb2-c9e8-4d38-8ea2-cf1090c9d324",
"template": "sample string 7",
"is_mandatory": true,
"status": "sample string 9",
"print_options": "sample string 10",
"modified_dateutc": "2026-09-16T10:12:39.3152595+00:00"
}
application/xml, text/xml
Sample:
<db_report_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_end_visible>2026-09-16T10:12:39.315Z</date_end_visible> <date_start_visible>2026-09-16T10:12:39.315Z</date_start_visible> <description>sample string 3</description> <id>d8563305-8da7-4006-92f5-6931f336be68</id> <is_mandatory>true</is_mandatory> <modified_dateutc>2026-09-16T10:12:39.315Z</modified_dateutc> <name>sample string 2</name> <print_options>sample string 10</print_options> <sales_organization_id>ddbc0fb2-c9e8-4d38-8ea2-cf1090c9d324</sales_organization_id> <status>sample string 9</status> <template>sample string 7</template> </db_report_type>