Retrieves all info categories, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of info categories.

db_info_category
NameDescriptionTypeAdditional information
id

Primary key

globally unique identifier
parent_id

Foreign key of the parent category, when this category is nested (Parent/Child).

globally unique identifier
name

Name of this category.

string
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all.

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": "a67aa5ba-f084-49e7-a5d0-1c5d30652667",
  "parent_id": "66fb74e4-e19b-4236-b2fb-e745d72c3086",
  "name": "sample string 3",
  "sales_organization_id": "6c78f6c3-394b-42a6-a351-d2083ba50e4e",
  "modified_dateutc": "2026-09-16T08:37:35.7264893+00:00"
}

application/xml, text/xml

Sample:
<db_info_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>a67aa5ba-f084-49e7-a5d0-1c5d30652667</id>
  <modified_dateutc>2026-09-16T08:37:35.726Z</modified_dateutc>
  <name>sample string 3</name>
  <parent_id>66fb74e4-e19b-4236-b2fb-e745d72c3086</parent_id>
  <sales_organization_id>6c78f6c3-394b-42a6-a351-d2083ba50e4e</sales_organization_id>
</db_info_category>