Retrieves the article group with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The article group id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

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

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": "f38544a1-6c92-41d3-b7b2-c2239539dd75",
  "name": "sample string 2",
  "group_number": 3,
  "code": "sample string 4",
  "modified_dateutc": "2026-09-16T10:16:19.670003+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>f38544a1-6c92-41d3-b7b2-c2239539dd75</id>
  <modified_dateutc>2026-09-16T10:16:19.670Z</modified_dateutc>
  <name>sample string 2</name>
</article_group>