Retrieves the info category with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The info category id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the info category, or 404 Not Found if it doesn't exist.
db_info_category| Name | Description | Type | Additional 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": "d8052d1f-c5be-458b-9c70-f8187ef4df36",
"parent_id": "9c440f0f-7ec5-4c98-8282-5f885e529759",
"name": "sample string 3",
"sales_organization_id": "5b7f77a0-84ee-4742-aa73-649b5a036f07",
"modified_dateutc": "2026-09-16T10:18:17.8018734+00:00"
}
application/xml, text/xml
Sample:
<db_info_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>d8052d1f-c5be-458b-9c70-f8187ef4df36</id> <modified_dateutc>2026-09-16T10:18:17.801Z</modified_dateutc> <name>sample string 3</name> <parent_id>9c440f0f-7ec5-4c98-8282-5f885e529759</parent_id> <sales_organization_id>5b7f77a0-84ee-4742-aa73-649b5a036f07</sales_organization_id> </db_info_category>