Retrieves an object of the specified key if belongs to a static category (like Company,Project,...)

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

db_info
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
name

Name of the db_info (Chapter name)

string

Required

Max length: 50

sequence

Need to order by sequence asc

integer
font_size

Font size

decimal number
fore_color

Fore color

string

Max length: 6

background_color

Background color

string

Max length: 6

is_closed

Indicate that by default it should be collapsed

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e0e80156-bc78-4522-ae64-07d49ad195e7",
  "name": "sample string 2",
  "sequence": 3,
  "font_size": 4.0,
  "fore_color": "sample string 5",
  "background_color": "sample string 6",
  "is_closed": true,
  "modified_dateutc": "2026-01-11T21:06:21.876717+00:00"
}

application/xml, text/xml

Sample:
<db_info xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <background_color>sample string 6</background_color>
  <font_size>4</font_size>
  <fore_color>sample string 5</fore_color>
  <id>e0e80156-bc78-4522-ae64-07d49ad195e7</id>
  <is_closed>true</is_closed>
  <modified_dateutc>2026-01-11T21:06:21.876Z</modified_dateutc>
  <name>sample string 2</name>
  <sequence>3</sequence>
</db_info>