Retrieves all article stock location values, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of article stock location values.
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": "8387e599-29ca-481f-98cd-5e893b19c44f",
"article_stock_location_id": "d005474d-6923-4d74-a50e-c9f6507f6ebc",
"article_id": "1b95daf9-655b-45eb-b0bc-0186e910a6e4",
"quantity": 4,
"sys_computed_eco_stock": 5.0,
"modified_dateutc": "2026-09-16T11:02:58.386434+00:00"
}
application/xml, text/xml
Sample:
<article_stock_location_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>1b95daf9-655b-45eb-b0bc-0186e910a6e4</article_id> <article_stock_location_id>d005474d-6923-4d74-a50e-c9f6507f6ebc</article_stock_location_id> <id>8387e599-29ca-481f-98cd-5e893b19c44f</id> <modified_dateutc>2026-09-16T11:02:58.386Z</modified_dateutc> <quantity>4</quantity> <sys_computed_eco_stock>5</sys_computed_eco_stock> </article_stock_location_list>