Retrieves the article group cache entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article group cache id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article group cache entry, or 404 Not Found if it doesn't exist.
article_group_cache| Name | Description | Type | Additional 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
{
"id": "dcb6e4d9-44b4-4300-a5de-da63cb1dda34",
"sales_organization_id": "254b2df2-da1d-4bd7-b349-e0db2836364a",
"article_group_1_id": "b23e8eee-1a8c-4338-a5a7-3016bbaa6772",
"article_group_2_id": "554eae3a-4fba-404e-af6b-62450f1e3980",
"article_group_3_id": "239bce4d-ef60-46f3-9dcc-1a3d12a6db72",
"article_group_4_id": "c4553be2-5952-4b86-bc10-6091448b2583",
"article_group_5_id": "28782162-e2d4-4139-a8bd-8d6dcca58fdc",
"article_group_6_id": "f0229963-e816-44ca-98b4-20585f5e55b0",
"article_status_id": "9dd02c61-aa27-4f71-b6e0-b83954a072bd",
"article_marketing_status_text": "sample string 10",
"allowed_on_order_channel": true,
"modified_dateutc": "2026-09-16T11:02:07.6841435+00:00"
}
application/xml, text/xml
<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>b23e8eee-1a8c-4338-a5a7-3016bbaa6772</article_group_1_id> <article_group_2_id>554eae3a-4fba-404e-af6b-62450f1e3980</article_group_2_id> <article_group_3_id>239bce4d-ef60-46f3-9dcc-1a3d12a6db72</article_group_3_id> <article_group_4_id>c4553be2-5952-4b86-bc10-6091448b2583</article_group_4_id> <article_group_5_id>28782162-e2d4-4139-a8bd-8d6dcca58fdc</article_group_5_id> <article_group_6_id>f0229963-e816-44ca-98b4-20585f5e55b0</article_group_6_id> <article_marketing_status_text>sample string 10</article_marketing_status_text> <article_status_id>9dd02c61-aa27-4f71-b6e0-b83954a072bd</article_status_id> <id>dcb6e4d9-44b4-4300-a5de-da63cb1dda34</id> <modified_dateutc>2026-09-16T11:02:07.684Z</modified_dateutc> <sales_organization_id>254b2df2-da1d-4bd7-b349-e0db2836364a</sales_organization_id> </article_group_cache>