Retrieves the article category with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The article category id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the article category, or 404 Not Found if it doesn't exist.

article_category
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

parent_id

Parent Article Category (Parent / Child)

globally unique identifier
parent_code

Embedded entity "article_category" for parent using ERP PK when adding/updating article_category

string
parent_article_category

Embedded entity "article_category" for parent when adding/updating article_category

article_category
code

Field used for Embedded entity (store there your ERP PK)

string

Max length: 50

name

Name of the article category

string

Required

Max length: 50

sys_level

Readonly: depth of this category in the parent/child hierarchy (0 for a root category).

integer
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e1dfdce4-338c-450e-87d1-95d34d50cc1c",
  "parent_id": "9ff02ca4-06b2-4a96-99c0-746c3b9666f4",
  "parent_code": "sample string 3",
  "code": "sample string 4",
  "name": "sample string 5",
  "sys_level": 6,
  "modified_dateutc": "2026-09-16T10:17:15.9921056+00:00"
}

application/xml, text/xml

Sample:
<article_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 4</code>
  <id>e1dfdce4-338c-450e-87d1-95d34d50cc1c</id>
  <modified_dateutc>2026-09-16T10:17:15.992Z</modified_dateutc>
  <name>sample string 5</name>
  <parent_code>sample string 3</parent_code>
  <parent_id>9ff02ca4-06b2-4a96-99c0-746c3b9666f4</parent_id>
  <sys_level>6</sys_level>
</article_category>