Retrieves all the article stock location

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

article_stock_location
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the article stock location

string
db_table_id

globally unique identifier
id_in_table

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": "4c97738d-f5b8-467d-9ab6-292c1468041a",
  "name": "sample string 2",
  "db_table_id": "7be21fb3-26c7-4c82-ad33-4eadfc31354a",
  "id_in_table": "8137cdcb-4b3c-4be0-9dd9-7a4ac59b42ba",
  "street": "sample string 5",
  "street_number": "sample string 6",
  "zip": "sample string 7",
  "city": "sample string 8",
  "db_state_id": "d3120564-84ea-4736-a376-c2fa074eab6e",
  "db_country_id": "1dee1722-1e23-47a1-aff3-f1a00e85624c",
  "latitude_decimal": 11.0,
  "longitude_decimal": 12.0,
  "is_locked_by_pin": true,
  "user_pin_code": "sample string 14",
  "modified_dateutc": "2026-06-16T12:01:31.3184195+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>1dee1722-1e23-47a1-aff3-f1a00e85624c</db_country_id>
  <db_state_id>d3120564-84ea-4736-a376-c2fa074eab6e</db_state_id>
  <db_table_id>7be21fb3-26c7-4c82-ad33-4eadfc31354a</db_table_id>
  <id>4c97738d-f5b8-467d-9ab6-292c1468041a</id>
  <id_in_table>8137cdcb-4b3c-4be0-9dd9-7a4ac59b42ba</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-06-16T12:01:31.318Z</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>