Retrieves all article stock location serial entries, 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 serial entries.

article_stock_location_serial
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

article_id

Foreign key of article

globally unique identifier
article_stock_location_id

Foreign key of the article_stock_location

globally unique identifier
serial_number

Serial number of this specific unit.

string

Max length: 255

reference_back_office

The Id/Ref of the back office for this unit. Used by Embedded entity.

string

Max length: 255

status

Current status of this serialized unit (e.g. available, used, disposed).

string

Max length: 255

archived

Indicates whether this serialized unit has been archived (no longer active).

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "b870333a-0234-4971-841d-f3eebf8f7fa6",
  "article_id": "8e570007-c03a-4702-925f-eb26be0f0a8b",
  "article_stock_location_id": "b1b1fefc-a08a-4b23-9729-af1b4468634f",
  "serial_number": "sample string 4",
  "reference_back_office": "sample string 5",
  "status": "sample string 6",
  "archived": true,
  "modified_dateutc": "2026-09-16T10:12:53.0340737+00:00"
}

application/xml, text/xml

Sample:
<article_stock_location_serial xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <article_id>8e570007-c03a-4702-925f-eb26be0f0a8b</article_id>
  <article_stock_location_id>b1b1fefc-a08a-4b23-9729-af1b4468634f</article_stock_location_id>
  <id>b870333a-0234-4971-841d-f3eebf8f7fa6</id>
  <modified_dateutc>2026-09-16T10:12:53.034Z</modified_dateutc>
  <reference_back_office>sample string 5</reference_back_office>
  <serial_number>sample string 4</serial_number>
  <status>sample string 6</status>
</article_stock_location_serial>