Retrieves all the article stock location
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
article_stock_location| Name | Description | Type | Additional 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": "01ece153-7f08-43c9-97ab-227d80a0ac0c",
"name": "sample string 2",
"db_table_id": "697890ef-09a5-41a6-926f-36d29037fe5b",
"id_in_table": "f6413f57-df6d-464f-9ae5-1f3f77546579",
"street": "sample string 5",
"street_number": "sample string 6",
"zip": "sample string 7",
"city": "sample string 8",
"db_state_id": "838694ab-3b8d-4a49-aa31-e0edacf875a9",
"db_country_id": "6112e5a7-a78d-4c16-9a5c-f2aaf65df445",
"latitude_decimal": 11.0,
"longitude_decimal": 12.0,
"is_locked_by_pin": true,
"user_pin_code": "sample string 14",
"modified_dateutc": "2026-03-07T14:52:32.3888897+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>6112e5a7-a78d-4c16-9a5c-f2aaf65df445</db_country_id> <db_state_id>838694ab-3b8d-4a49-aa31-e0edacf875a9</db_state_id> <db_table_id>697890ef-09a5-41a6-926f-36d29037fe5b</db_table_id> <id>01ece153-7f08-43c9-97ab-227d80a0ac0c</id> <id_in_table>f6413f57-df6d-464f-9ae5-1f3f77546579</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-03-07T14:52:32.388Z</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>