Retrieves all article categories, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of article categories.
article_category| Name | Description | Type | Additional 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": "c6a10ba4-15f0-47f3-81b9-4b201c345f1e",
"parent_id": "b3bcfc44-cce5-4b35-8c4e-d64a6c1c966e",
"parent_code": "sample string 3",
"code": "sample string 4",
"name": "sample string 5",
"sys_level": 6,
"modified_dateutc": "2026-09-16T10:16:08.3334147+00:00"
}
application/xml, text/xml
Sample:
<article_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 4</code> <id>c6a10ba4-15f0-47f3-81b9-4b201c345f1e</id> <modified_dateutc>2026-09-16T10:16:08.333Z</modified_dateutc> <name>sample string 5</name> <parent_code>sample string 3</parent_code> <parent_id>b3bcfc44-cce5-4b35-8c4e-d64a6c1c966e</parent_id> <sys_level>6</sys_level> </article_category>