Retrieves the article stock location list with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

article_stock_location_list
NameDescriptionTypeAdditional 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": "485423d6-9c0c-4d10-aea3-89e97f52e933",
  "article_stock_location_id": "84bd2fce-193d-4050-87ec-f06ea745e3f8",
  "article_id": "0221c766-9ab4-46d0-aea4-033fa3832791",
  "quantity": 4,
  "sys_computed_eco_stock": 5.0,
  "modified_dateutc": "2026-06-16T21:23:22.8396081+00:00"
}

application/xml, text/xml

Sample:
<article_stock_location_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <article_id>0221c766-9ab4-46d0-aea4-033fa3832791</article_id>
  <article_stock_location_id>84bd2fce-193d-4050-87ec-f06ea745e3f8</article_stock_location_id>
  <id>485423d6-9c0c-4d10-aea3-89e97f52e933</id>
  <modified_dateutc>2026-06-16T21:23:22.839Z</modified_dateutc>
  <quantity>4</quantity>
  <sys_computed_eco_stock>5</sys_computed_eco_stock>
</article_stock_location_list>