Retrieves all db report types available for ServiceDesk

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

db_report_type_view
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of db report type

string
description

Description

string
is_default

Is default type

boolean
sales_organization_id

Sale organization id

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "4a593ff6-da0f-4c47-a263-9a15bed68d4c",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "sales_organization_id": "f564c5d1-dcf7-4425-8049-139e3ee80732",
  "modified_dateutc": "2026-06-24T03:58:26.7460612+00:00"
}

application/xml, text/xml

Sample:
<db_report_type_view xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <description>sample string 3</description>
  <id>4a593ff6-da0f-4c47-a263-9a15bed68d4c</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-06-24T03:58:26.746Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>f564c5d1-dcf7-4425-8049-139e3ee80732</sales_organization_id>
</db_report_type_view>