Retrieves all the article stock location lists
Request Information
URI Parameters :
None.
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": "ef6dd6d0-0e67-4581-8c33-d0e52cb25f25",
"article_stock_location_id": "44e0a4b9-5890-4795-a178-a34da3dca1c8",
"article_id": "9ff63da0-8a92-426b-a676-81289abc6872",
"quantity": 4,
"sys_computed_eco_stock": 5.0,
"modified_dateutc": "2026-06-16T22:32:10.4152099+00:00"
}
application/xml, text/xml
Sample:
<article_stock_location_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <article_id>9ff63da0-8a92-426b-a676-81289abc6872</article_id> <article_stock_location_id>44e0a4b9-5890-4795-a178-a34da3dca1c8</article_stock_location_id> <id>ef6dd6d0-0e67-4581-8c33-d0e52cb25f25</id> <modified_dateutc>2026-06-16T22:32:10.415Z</modified_dateutc> <quantity>4</quantity> <sys_computed_eco_stock>5</sys_computed_eco_stock> </article_stock_location_list>