Retrieves the article stock location value with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The article stock location value id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the article stock location value, or 404 Not Found if it doesn't exist.
article_stock_location_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| article_stock_location_id |
Foreign key of the article_stock_location |
globally unique identifier | |
| article_id |
Foreign key of article |
globally unique identifier | |
| quantity |
Quantity in stock for this article, for this stock |
integer | |
| sys_computed_eco_stock |
Readonly: last computed economic stock quantity (accounting for reservations/thresholds) for this article at this location. |
decimal number | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "51632eae-91a1-4bec-86c6-a08e795a1572",
"article_stock_location_id": "6c828e42-875d-42b9-abfc-33f7cf34c04e",
"article_id": "3804af6c-e025-435e-8880-481622201724",
"quantity": 4,
"sys_computed_eco_stock": 5.0,
"modified_dateutc": "2026-09-16T08:37:43.9040369+00:00"
}
application/xml, text/xml
Sample:
<article_stock_location_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>3804af6c-e025-435e-8880-481622201724</article_id> <article_stock_location_id>6c828e42-875d-42b9-abfc-33f7cf34c04e</article_stock_location_id> <id>51632eae-91a1-4bec-86c6-a08e795a1572</id> <modified_dateutc>2026-09-16T08:37:43.904Z</modified_dateutc> <quantity>4</quantity> <sys_computed_eco_stock>5</sys_computed_eco_stock> </article_stock_location_list>