Retrieves all article stock locations, 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 locations.

article_stock_location
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the article stock location

string
db_table_id

Identifier of the database table that belongs to, when this stock location is tied to another record (e.g. a car).

globally unique identifier
id_in_table

Primary key of the linked record in the table identified by .

globally unique identifier
street

Street

string
street_number

Street number

string
zip

Zip

string
city

City

string
db_state_id

Db state id

globally unique identifier
db_country_id

Db country id

globally unique identifier
latitude_decimal

Latitude

decimal number
longitude_decimal

Longitude

decimal number
is_locked_by_pin

Flag for checking is locked by pin

boolean
user_pin_code

User pin code

string
modified_dateutc

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

date
archived

Flag for checking archived

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "22aeea2a-bfb2-41c9-af2c-9751c563a18b",
  "name": "sample string 2",
  "db_table_id": "d6a248dd-abf8-4507-84b8-0da3e59a4d90",
  "id_in_table": "b5b5741d-d342-4aca-90c6-854628b7befc",
  "street": "sample string 5",
  "street_number": "sample string 6",
  "zip": "sample string 7",
  "city": "sample string 8",
  "db_state_id": "6d110a3b-5150-491d-bc33-fd9704661a09",
  "db_country_id": "26695f83-6faa-4af5-895a-08cdf6bd0d08",
  "latitude_decimal": 11.0,
  "longitude_decimal": 12.0,
  "is_locked_by_pin": true,
  "user_pin_code": "sample string 14",
  "modified_dateutc": "2026-09-16T10:14:53.7577429+00:00",
  "archived": true
}

application/xml, text/xml

Sample:
<article_stock_location xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <city>sample string 8</city>
  <db_country_id>26695f83-6faa-4af5-895a-08cdf6bd0d08</db_country_id>
  <db_state_id>6d110a3b-5150-491d-bc33-fd9704661a09</db_state_id>
  <db_table_id>d6a248dd-abf8-4507-84b8-0da3e59a4d90</db_table_id>
  <id>22aeea2a-bfb2-41c9-af2c-9751c563a18b</id>
  <id_in_table>b5b5741d-d342-4aca-90c6-854628b7befc</id_in_table>
  <is_locked_by_pin>true</is_locked_by_pin>
  <latitude_decimal>11</latitude_decimal>
  <longitude_decimal>12</longitude_decimal>
  <modified_dateutc>2026-09-16T10:14:53.757Z</modified_dateutc>
  <name>sample string 2</name>
  <street>sample string 5</street>
  <street_number>sample string 6</street_number>
  <user_pin_code>sample string 14</user_pin_code>
  <zip>sample string 7</zip>
</article_stock_location>