Retrieves the article stock location list with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
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 | 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": "11ce375e-3107-4f34-b09b-46da2770007b",
"article_stock_location_id": "53cd83c8-91b8-43e3-9658-b3cb7ac77748",
"article_id": "60399c57-7226-4e97-83e9-fa8cfd48a11a",
"quantity": 4,
"sys_computed_eco_stock": 5.0,
"modified_dateutc": "2026-03-07T13:18:24.7544798+00:00"
}
application/xml, text/xml
Sample:
<article_stock_location_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>60399c57-7226-4e97-83e9-fa8cfd48a11a</article_id> <article_stock_location_id>53cd83c8-91b8-43e3-9658-b3cb7ac77748</article_stock_location_id> <id>11ce375e-3107-4f34-b09b-46da2770007b</id> <modified_dateutc>2026-03-07T13:18:24.754Z</modified_dateutc> <quantity>4</quantity> <sys_computed_eco_stock>5</sys_computed_eco_stock> </article_stock_location_list>