Retrieves the article stock location serial entry with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The article stock location serial entry id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the article stock location serial entry, or 404 Not Found if it doesn't exist.

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": "67a2a326-be9b-4727-877b-9671b38c6d21",
  "article_id": "09d03245-033a-4f91-93e9-f0f04b098878",
  "article_stock_location_id": "2531feba-90a1-4a1b-b611-ab749a49e17d",
  "serial_number": "sample string 4",
  "reference_back_office": "sample string 5",
  "status": "sample string 6",
  "archived": true,
  "modified_dateutc": "2026-09-16T10:16:21.3687871+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>09d03245-033a-4f91-93e9-f0f04b098878</article_id>
  <article_stock_location_id>2531feba-90a1-4a1b-b611-ab749a49e17d</article_stock_location_id>
  <id>67a2a326-be9b-4727-877b-9671b38c6d21</id>
  <modified_dateutc>2026-09-16T10:16:21.368Z</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>