GET api/externalstocklocation

Gets the external stock.

Request Information

URI Parameters

None.

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

List of external stock items.

Collection of ExternalStockLocationResponse
NameDescriptionTypeAdditional information
ExternalStockLocationId

integer

None.

ChangedDate

date

None.

ChangedBy

string

None.

ExternalStockLocationName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ExternalStockLocationId": 1,
    "ChangedDate": "2026-06-12 18:19:10",
    "ChangedBy": "sample string 2",
    "ExternalStockLocationName": "sample string 3"
  },
  {
    "ExternalStockLocationId": 1,
    "ChangedDate": "2026-06-12 18:19:10",
    "ChangedBy": "sample string 2",
    "ExternalStockLocationName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExternalStockLocationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.ExternalStock">
  <ExternalStockLocationResponse>
    <ExternalStockLocationName>sample string 3</ExternalStockLocationName>
    <ChangedBy>sample string 2</ChangedBy>
    <ChangedDate>2026-06-12T18:19:10.5922369+02:00</ChangedDate>
    <ExternalStockLocationId>1</ExternalStockLocationId>
  </ExternalStockLocationResponse>
  <ExternalStockLocationResponse>
    <ExternalStockLocationName>sample string 3</ExternalStockLocationName>
    <ChangedBy>sample string 2</ChangedBy>
    <ChangedDate>2026-06-12T18:19:10.5922369+02:00</ChangedDate>
    <ExternalStockLocationId>1</ExternalStockLocationId>
  </ExternalStockLocationResponse>
</ArrayOfExternalStockLocationResponse>