Retrieves the article stock location with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The article stock location id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

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

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": "3cc8ebb5-2029-42dd-88c0-4b0483f5ce48",
  "name": "sample string 2",
  "db_table_id": "b85fdfe4-4643-4f0d-bef9-3636e00ba3ea",
  "id_in_table": "edce65bc-cd2e-4c87-9b01-3615af0309af",
  "street": "sample string 5",
  "street_number": "sample string 6",
  "zip": "sample string 7",
  "city": "sample string 8",
  "db_state_id": "6af0b162-4573-44b4-b25b-3b4c4dd355fb",
  "db_country_id": "6e79e86b-69c9-4d4d-8360-c77f2f0b2281",
  "latitude_decimal": 11.0,
  "longitude_decimal": 12.0,
  "is_locked_by_pin": true,
  "user_pin_code": "sample string 14",
  "modified_dateutc": "2026-09-16T08:37:13.0828714+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>6e79e86b-69c9-4d4d-8360-c77f2f0b2281</db_country_id>
  <db_state_id>6af0b162-4573-44b4-b25b-3b4c4dd355fb</db_state_id>
  <db_table_id>b85fdfe4-4643-4f0d-bef9-3636e00ba3ea</db_table_id>
  <id>3cc8ebb5-2029-42dd-88c0-4b0483f5ce48</id>
  <id_in_table>edce65bc-cd2e-4c87-9b01-3615af0309af</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-16T08:37:13.082Z</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>