Retrieves the db report type with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
key

db_report_type_view.id

globally unique identifier

Required

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": "36530278-2bd2-4b8c-8d1e-87ced9acf4f5",
  "name": "sample string 2",
  "description": "sample string 3",
  "is_default": true,
  "sales_organization_id": "6d09aa33-09ff-4990-a116-2ec99f9b7668",
  "modified_dateutc": "2026-06-24T04:02:47.7581725+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>36530278-2bd2-4b8c-8d1e-87ced9acf4f5</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-06-24T04:02:47.758Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>6d09aa33-09ff-4990-a116-2ec99f9b7668</sales_organization_id>
</db_report_type_view>