Retrieves all article groups, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of article groups.

article_group
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the Group item

string

Required

Max length: 255

group_number

Which of the article's six group slots (1-6) this entry belongs to.

integer
code

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

string

Max length: 255

modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "14b9072e-e1a8-48ae-b849-237e93ba746a",
  "name": "sample string 2",
  "group_number": 3,
  "code": "sample string 4",
  "modified_dateutc": "2026-09-16T09:22:46.3048328+00:00"
}

application/xml, text/xml

Sample:
<article_group xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <code>sample string 4</code>
  <group_number>3</group_number>
  <id>14b9072e-e1a8-48ae-b849-237e93ba746a</id>
  <modified_dateutc>2026-09-16T09:22:46.304Z</modified_dateutc>
  <name>sample string 2</name>
</article_group>