Retrieves the article stock location with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
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": "5486374a-efb4-490e-9d8a-cacdd8c6b101",
"name": "sample string 2",
"db_table_id": "c0894e2f-bc32-452b-8ed7-26f95707eeff",
"id_in_table": "c0267b1e-83a2-41a0-aef5-f63a146091ca",
"street": "sample string 5",
"street_number": "sample string 6",
"zip": "sample string 7",
"city": "sample string 8",
"db_state_id": "6916a164-c7e9-4ab8-8776-d11ca6706fb3",
"db_country_id": "4c42a28b-fc64-49b7-a5f1-34ed774f02a3",
"latitude_decimal": 11.0,
"longitude_decimal": 12.0,
"is_locked_by_pin": true,
"user_pin_code": "sample string 14",
"modified_dateutc": "2026-06-16T21:23:07.887518+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>4c42a28b-fc64-49b7-a5f1-34ed774f02a3</db_country_id> <db_state_id>6916a164-c7e9-4ab8-8776-d11ca6706fb3</db_state_id> <db_table_id>c0894e2f-bc32-452b-8ed7-26f95707eeff</db_table_id> <id>5486374a-efb4-490e-9d8a-cacdd8c6b101</id> <id_in_table>c0267b1e-83a2-41a0-aef5-f63a146091ca</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-16T21:23:07.887Z</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>