GET api/InventoryLocations/{id}
Fetch a specific location
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
NamedCompanyObject| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId | integer |
None. |
|
| Name | string |
None. |
|
| LastModified | date |
None. |
|
| Created | date |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"CompanyId": 1,
"Name": "sample string 2",
"LastModified": "2025-12-08T14:22:03.5961253+00:00",
"Created": "2025-12-08T14:22:03.5961253+00:00",
"Id": 5
}
application/xml, text/xml
Sample:
<NamedCompanyObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel"> <Id>5</Id> <Created>2025-12-08T14:22:03.5961253+00:00</Created> <LastModified>2025-12-08T14:22:03.5961253+00:00</LastModified> <Name>sample string 2</Name> <CompanyId>1</CompanyId> </NamedCompanyObject>
