Retrieves all article group cache entries, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of article group cache entries.

article_group_cache
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
sales_organization_id

Foreign key of the sales organization this cached row applies to.

globally unique identifier
article_group_1_id

Foreign key of the article's group 1 (see ).

globally unique identifier
article_group_2_id

Foreign key of the article's group 2.

globally unique identifier
article_group_3_id

Foreign key of the article's group 3.

globally unique identifier
article_group_4_id

Foreign key of the article's group 4.

globally unique identifier
article_group_5_id

Foreign key of the article's group 5.

globally unique identifier
article_group_6_id

Foreign key of the article's group 6.

globally unique identifier
article_status_id

Foreign key of the article's current status.

globally unique identifier
article_marketing_status_text

Display text of the article's marketing status, for listing/filtering.

string
allowed_on_order_channel

Indicates whether the article is currently allowed to be ordered through its configured order channel(s).

boolean
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "ed329de4-3323-4411-ae5f-0783487f0314",
  "sales_organization_id": "59bcddc9-9331-431e-b28d-030d8c7f08c3",
  "article_group_1_id": "35d42e6d-765d-4b2a-adaf-3ae560f24e65",
  "article_group_2_id": "e8c418b1-421f-4202-be87-2f8b167c2b78",
  "article_group_3_id": "06ae5153-8017-4f94-8aca-da8bbc25a05f",
  "article_group_4_id": "3c85e288-eaaf-448f-b5fe-53db47366174",
  "article_group_5_id": "01ed9544-ca83-46a1-91b8-f7405a652439",
  "article_group_6_id": "aab2e8a9-5aae-477e-af69-b5e4b749ccbc",
  "article_status_id": "72d2d3e4-9af5-4058-8d7b-2d19a369b165",
  "article_marketing_status_text": "sample string 10",
  "allowed_on_order_channel": true,
  "modified_dateutc": "2026-09-16T10:11:50.577324+00:00"
}

application/xml, text/xml

Sample:
<article_group_cache xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <allowed_on_order_channel>true</allowed_on_order_channel>
  <article_group_1_id>35d42e6d-765d-4b2a-adaf-3ae560f24e65</article_group_1_id>
  <article_group_2_id>e8c418b1-421f-4202-be87-2f8b167c2b78</article_group_2_id>
  <article_group_3_id>06ae5153-8017-4f94-8aca-da8bbc25a05f</article_group_3_id>
  <article_group_4_id>3c85e288-eaaf-448f-b5fe-53db47366174</article_group_4_id>
  <article_group_5_id>01ed9544-ca83-46a1-91b8-f7405a652439</article_group_5_id>
  <article_group_6_id>aab2e8a9-5aae-477e-af69-b5e4b749ccbc</article_group_6_id>
  <article_marketing_status_text>sample string 10</article_marketing_status_text>
  <article_status_id>72d2d3e4-9af5-4058-8d7b-2d19a369b165</article_status_id>
  <id>ed329de4-3323-4411-ae5f-0783487f0314</id>
  <modified_dateutc>2026-09-16T10:11:50.577Z</modified_dateutc>
  <sales_organization_id>59bcddc9-9331-431e-b28d-030d8c7f08c3</sales_organization_id>
</article_group_cache>