Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
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 | 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": "c3062f8b-e5ce-4fab-8891-eb26a212700c",
"parent_id": "644d4fe1-5084-403a-88df-5b9eba990aca",
"parent_code": "sample string 3",
"code": "sample string 4",
"name": "sample string 5",
"sys_level": 6,
"modified_dateutc": "2026-01-11T23:55:19.6587106+00:00"
}
application/xml, text/xml
Sample:
<article_category xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 4</code> <id>c3062f8b-e5ce-4fab-8891-eb26a212700c</id> <modified_dateutc>2026-01-11T23:55:19.658Z</modified_dateutc> <name>sample string 5</name> <parent_code>sample string 3</parent_code> <parent_id>644d4fe1-5084-403a-88df-5b9eba990aca</parent_id> <sys_level>6</sys_level> </article_category>