Retrieves all info chapters, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of info chapters.
db_info| Name | Description | Type | Additional 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 | |
| archived |
Indicates whether this chapter has been archived (no longer shown). |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "82ec2153-f05f-4663-97cd-602b8ff00de4",
"name": "sample string 2",
"sequence": 3,
"font_size": 4.0,
"fore_color": "sample string 5",
"background_color": "sample string 6",
"is_closed": true,
"archived": true,
"modified_dateutc": "2026-09-16T10:14:01.1757106+00:00"
}
application/xml, text/xml
Sample:
<db_info xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <archived>true</archived> <background_color>sample string 6</background_color> <font_size>4</font_size> <fore_color>sample string 5</fore_color> <id>82ec2153-f05f-4663-97cd-602b8ff00de4</id> <is_closed>true</is_closed> <modified_dateutc>2026-09-16T10:14:01.175Z</modified_dateutc> <name>sample string 2</name> <sequence>3</sequence> </db_info>